#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_mipi_dsi.h>
#include <drm/drm_modes.h>
#include <drm/drm_panel.h>
struct sharp_ls060 { … };
static inline struct sharp_ls060 *to_sharp_ls060(struct drm_panel *panel)
{ … }
static void sharp_ls060_reset(struct sharp_ls060 *ctx)
{ … }
static int sharp_ls060_on(struct sharp_ls060 *ctx)
{ … }
static int sharp_ls060_off(struct sharp_ls060 *ctx)
{ … }
static int sharp_ls060_prepare(struct drm_panel *panel)
{ … }
static int sharp_ls060_unprepare(struct drm_panel *panel)
{ … }
static const struct drm_display_mode sharp_ls060_mode = …;
static int sharp_ls060_get_modes(struct drm_panel *panel,
struct drm_connector *connector)
{ … }
static const struct drm_panel_funcs sharp_ls060_panel_funcs = …;
static int sharp_ls060_probe(struct mipi_dsi_device *dsi)
{ … }
static void sharp_ls060_remove(struct mipi_dsi_device *dsi)
{ … }
static const struct of_device_id sharp_ls060t1sx01_of_match[] = …;
MODULE_DEVICE_TABLE(of, sharp_ls060t1sx01_of_match);
static struct mipi_dsi_driver sharp_ls060_driver = …;
module_mipi_dsi_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;