#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/delay.h>
#include <linux/platform_device.h>
#include <linux/err.h>
#include <linux/spi/spi.h>
#include <video/mmp_disp.h>
static u16 init[] = …;
static u16 poweroff[] = …;
struct tpohvga_plat_data { … };
static void tpohvga_onoff(struct mmp_panel *panel, int status)
{ … }
static struct mmp_mode mmp_modes_tpohvga[] = …;
static int tpohvga_get_modelist(struct mmp_panel *panel,
struct mmp_mode **modelist)
{ … }
static struct mmp_panel panel_tpohvga = …;
static int tpohvga_probe(struct spi_device *spi)
{ … }
static struct spi_driver panel_tpohvga_driver = …;
module_spi_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;