linux/drivers/gpu/drm/panel/panel-tdo-tl070wsh30.c

// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2020 BayLibre, SAS
 * Author: Neil Armstrong <[email protected]>
 */

#include <linux/delay.h>
#include <linux/gpio/consumer.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/regulator/consumer.h>

#include <video/mipi_display.h>

#include <drm/drm_crtc.h>
#include <drm/drm_device.h>
#include <drm/drm_mipi_dsi.h>
#include <drm/drm_modes.h>
#include <drm/drm_panel.h>

struct tdo_tl070wsh30_panel {};

static inline
struct tdo_tl070wsh30_panel *to_tdo_tl070wsh30_panel(struct drm_panel *panel)
{}

static int tdo_tl070wsh30_panel_prepare(struct drm_panel *panel)
{}

static int tdo_tl070wsh30_panel_unprepare(struct drm_panel *panel)
{}

static const struct drm_display_mode default_mode =;

static int tdo_tl070wsh30_panel_get_modes(struct drm_panel *panel,
				       struct drm_connector *connector)
{}

static const struct drm_panel_funcs tdo_tl070wsh30_panel_funcs =;

static const struct of_device_id tdo_tl070wsh30_of_match[] =;
MODULE_DEVICE_TABLE(of, tdo_tl070wsh30_of_match);

static int tdo_tl070wsh30_panel_add(struct tdo_tl070wsh30_panel *tdo_tl070wsh30)
{}

static int tdo_tl070wsh30_panel_probe(struct mipi_dsi_device *dsi)
{}

static void tdo_tl070wsh30_panel_remove(struct mipi_dsi_device *dsi)
{}

static struct mipi_dsi_driver tdo_tl070wsh30_panel_driver =;
module_mipi_dsi_driver();

MODULE_AUTHOR();
MODULE_DESCRIPTION();
MODULE_LICENSE();