diff options
author | David Lechner <david@lechnology.com> | 2017-11-19 14:12:08 -0600 |
---|---|---|
committer | Noralf Trønnes <noralf@tronnes.org> | 2017-12-01 14:08:37 +0100 |
commit | b57e8b7661e04690643031af276c7bfc5c969dc9 (patch) | |
tree | db4e15e93497cb2565b197ce5d1a0ee68b9a809f /drivers/gpu/drm/tinydrm/Makefile | |
parent | 13deee8111ed600ecd1809b0bfbab232c82159d9 (diff) | |
download | lwn-b57e8b7661e04690643031af276c7bfc5c969dc9.tar.gz lwn-b57e8b7661e04690643031af276c7bfc5c969dc9.zip |
drm/tinydrm: add driver for ILI9225 panels
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
Diffstat (limited to 'drivers/gpu/drm/tinydrm/Makefile')
-rw-r--r-- | drivers/gpu/drm/tinydrm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/tinydrm/Makefile b/drivers/gpu/drm/tinydrm/Makefile index 0c184bd1bb59..8aeee532474f 100644 --- a/drivers/gpu/drm/tinydrm/Makefile +++ b/drivers/gpu/drm/tinydrm/Makefile @@ -4,6 +4,7 @@ obj-$(CONFIG_DRM_TINYDRM) += core/ 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 |