#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/gpio/consumer.h>
#include <linux/spi/spi.h>
#include <linux/delay.h>
#include "fbtft.h"
#define DRVNAME …
#define WIDTH …
#define HEIGHT …
#define GAMMA_NUM …
#define GAMMA_LEN …
#define DEFAULT_GAMMA … \
static int init_display(struct fbtft_par *par)
{ … }
static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
{ … }
static void write_reg8_bus8(struct fbtft_par *par, int len, ...)
{ … }
static int set_gamma(struct fbtft_par *par, u32 *curves)
{ … }
static int blank(struct fbtft_par *par, bool on)
{ … }
static struct fbtft_display display = …;
FBTFT_REGISTER_DRIVER(…);
MODULE_ALIAS(…) …;
MODULE_ALIAS(…) …;
MODULE_ALIAS(…) …;
MODULE_ALIAS(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;