diff options
author | Thierry Reding <treding@nvidia.com> | 2013-09-26 14:09:19 (GMT) |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2013-10-31 08:20:05 (GMT) |
commit | d18d303378ad81fd73375c0148ac42e28bc0b2a4 (patch) | |
tree | 4641ccb00625ad70e6b4b4b1ec86906875756339 /drivers/gpu | |
parent | 77651e7173facaa8d8bc018c1987ddea0e2852cf (diff) | |
download | linux-d18d303378ad81fd73375c0148ac42e28bc0b2a4.tar.xz |
drm/tegra: Cleanup tegra_dc structure
Remove the unused host1x field from the structure and group the fields
more logically.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/host1x/drm/drm.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/gpu/host1x/drm/drm.h b/drivers/gpu/host1x/drm/drm.h index f7cd946..b8d9f43 100644 --- a/drivers/gpu/host1x/drm/drm.h +++ b/drivers/gpu/host1x/drm/drm.h @@ -94,16 +94,13 @@ struct tegra_output; struct tegra_dc { struct host1x_client client; - spinlock_t lock; - - struct host1x_drm *host1x; struct device *dev; + spinlock_t lock; struct drm_crtc base; int pipe; struct clk *clk; - void __iomem *regs; int irq; |