forked from Minki/linux
b57e8b7661
This adds a new driver for display panels based on the Ilitek ILI9225 controller. This was developed for a no-name panel with a red PCB that is commonly marketed for Arduino. See <https://github.com/Nkawu/TFT_22_ILI9225>. Signed-off-by: David Lechner <david@lechnology.com> Reviewed-by: Noralf Trønnes <noralf@tronnes.org> Signed-off-by: Noralf Trønnes <noralf@tronnes.org> Link: https://patchwork.freedesktop.org/patch/msgid/1511122328-31133-5-git-send-email-david@lechnology.com
11 lines
285 B
Makefile
11 lines
285 B
Makefile
obj-$(CONFIG_DRM_TINYDRM) += core/
|
|
|
|
# Controllers
|
|
obj-$(CONFIG_TINYDRM_MIPI_DBI) += mipi-dbi.o
|
|
|
|
# Displays
|
|
obj-$(CONFIG_TINYDRM_ILI9225) += ili9225.o
|
|
obj-$(CONFIG_TINYDRM_MI0283QT) += mi0283qt.o
|
|
obj-$(CONFIG_TINYDRM_REPAPER) += repaper.o
|
|
obj-$(CONFIG_TINYDRM_ST7586) += st7586.o
|