diff options
author | Thierry Reding <treding@nvidia.com> | 2013-08-30 15:22:36 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2013-12-17 18:10:00 +0100 |
commit | 9be7d864cf0763dd24e07bac7f0a94180bd5e257 (patch) | |
tree | 5463360e4af4ded1a4e6d18982a415192bbd9c81 /drivers/gpu/drm/tegra/drm.h | |
parent | 210fcd9d9cf1ad6ebfae3b46b457e602c8f8cdc2 (diff) |
drm/tegra: Implement panel support
Use the DRM panel framework to attach a panel to an output. If the panel
attached to a connector supports supports the backlight brightness
accessors, a property will be available to allow the brightness to be
modified from userspace.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/drm.h')
-rw-r--r-- | drivers/gpu/drm/tegra/drm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/tegra/drm.h b/drivers/gpu/drm/tegra/drm.h index 266aae08a3bd..bb8b1305606e 100644 --- a/drivers/gpu/drm/tegra/drm.h +++ b/drivers/gpu/drm/tegra/drm.h @@ -186,6 +186,7 @@ struct tegra_output { const struct tegra_output_ops *ops; enum tegra_output_type type; + struct drm_panel *panel; struct i2c_adapter *ddc; const struct edid *edid; unsigned int hpd_irq; |