diff options
Diffstat (limited to 'drivers/gpu/host1x/dev.h')
| -rw-r--r-- | drivers/gpu/host1x/dev.h | 11 | 
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/gpu/host1x/dev.h b/drivers/gpu/host1x/dev.h index bed90a8131b..0b6e8e9629c 100644 --- a/drivers/gpu/host1x/dev.h +++ b/drivers/gpu/host1x/dev.h @@ -27,6 +27,7 @@  #include "job.h"  struct host1x_syncpt; +struct host1x_syncpt_base;  struct host1x_channel;  struct host1x_cdma;  struct host1x_job; @@ -102,6 +103,7 @@ struct host1x {  	void __iomem *regs;  	struct host1x_syncpt *syncpt; +	struct host1x_syncpt_base *bases;  	struct device *dev;  	struct clk *clk; @@ -125,7 +127,10 @@ struct host1x {  	struct dentry *debugfs; -	void *drm_data; +	struct mutex devices_lock; +	struct list_head devices; + +	struct list_head list;  };  void host1x_sync_writel(struct host1x *host1x, u32 r, u32 v); @@ -301,8 +306,6 @@ static inline void host1x_hw_show_mlocks(struct host1x *host, struct output *o)  	host->debug_op->show_mlocks(host, o);  } -extern struct platform_driver tegra_dc_driver; -extern struct platform_driver tegra_hdmi_driver; -extern struct platform_driver tegra_gr2d_driver; +extern struct platform_driver tegra_mipi_driver;  #endif  | 
