diff options
author | Thierry Reding <treding@nvidia.com> | 2013-08-30 17:10:14 +0400 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2013-12-17 21:09:51 +0400 |
commit | 280921de7241ee63184c8baa89ec3fe0122dedb3 (patch) | |
tree | 10f9170b4018bfa46431a39336b4ce3782dd3de1 /drivers/gpu/drm/Makefile | |
parent | aead40ea0b53a0e28d34adf7bb923ecb2968c04a (diff) | |
download | linux-280921de7241ee63184c8baa89ec3fe0122dedb3.tar.xz |
drm/panel: Add simple panel support
Add a driver for simple panels. Such panels can have a regulator that
provides the supply voltage and a separate GPIO to enable the panel.
Optionally the panels can have a backlight associated with them so it
can be enabled or disabled according to the panel's power management
mode.
Support is added for two panels: An AU Optronics 10.1" WSVGA and a
Chunghwa Picture Tubes 10.1" WXGA panel.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/Makefile')
-rw-r--r-- | drivers/gpu/drm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile index 800c021c6ceb..d1a5c7277678 100644 --- a/drivers/gpu/drm/Makefile +++ b/drivers/gpu/drm/Makefile @@ -61,3 +61,4 @@ obj-$(CONFIG_DRM_QXL) += qxl/ obj-$(CONFIG_DRM_MSM) += msm/ obj-$(CONFIG_DRM_TEGRA) += tegra/ obj-y += i2c/ +obj-y += panel/ |