Linux Framebuffer drivers for small TFT LCD display modules. Development has moved to https://git.kernel.org/cgit/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/fbtft?h=staging-testing
write_reg() was meant to superseed write_cmd() and write_data().
After write_reg() was added, the flexfb driver came, and it didn't know beforehand the number of data values. Thus write_cmd/data stayed.
Either I change fbtft_ops.write_reg() to take an array, or I make a workaround for flexfb.
write_reg() was meant to superseed write_cmd() and write_data(). After write_reg() was added, the flexfb driver came, and it didn't know beforehand the number of data values. Thus write_cmd/data stayed.
Either I change fbtft_ops.write_reg() to take an array, or I make a workaround for flexfb.
Drivers to be converted