#include <linux/delay.h>
#include <linux/gpio/consumer.h>
#include <linux/regulator/consumer.h>
#include <linux/module.h>
#include <linux/of.h>
#include <video/mipi_display.h>
#include <drm/drm_mipi_dsi.h>
#include <drm/drm_modes.h>
#include <drm/drm_panel.h>
static const char * const regulator_names[] = …;
static const unsigned long regulator_enable_loads[] = …;
struct ebbg_ft8719 { … };
static inline
struct ebbg_ft8719 *to_ebbg_ft8719(struct drm_panel *panel)
{ … }
static void ebbg_ft8719_reset(struct ebbg_ft8719 *ctx)
{ … }
static int ebbg_ft8719_on(struct ebbg_ft8719 *ctx)
{ … }
static int ebbg_ft8719_off(struct ebbg_ft8719 *ctx)
{ … }
static int ebbg_ft8719_prepare(struct drm_panel *panel)
{ … }
static int ebbg_ft8719_unprepare(struct drm_panel *panel)
{ … }
static const struct drm_display_mode ebbg_ft8719_mode = …;
static int ebbg_ft8719_get_modes(struct drm_panel *panel,
struct drm_connector *connector)
{ … }
static const struct drm_panel_funcs ebbg_ft8719_panel_funcs = …;
static int ebbg_ft8719_probe(struct mipi_dsi_device *dsi)
{ … }
static void ebbg_ft8719_remove(struct mipi_dsi_device *dsi)
{ … }
static const struct of_device_id ebbg_ft8719_of_match[] = …;
MODULE_DEVICE_TABLE(of, ebbg_ft8719_of_match);
static struct mipi_dsi_driver ebbg_ft8719_driver = …;
module_mipi_dsi_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;