diff options
| author | James Morris <james.l.morris@oracle.com> | 2012-05-04 12:46:40 +1000 | 
|---|---|---|
| committer | James Morris <james.l.morris@oracle.com> | 2012-05-04 12:46:40 +1000 | 
| commit | 898bfc1d46bd76f8ea2a0fbd239dd2073efe2aa3 (patch) | |
| tree | e6e666085abe674dbf6292555961fe0a0f2e2d2f /drivers/gpu/drm/exynos/exynos_drm_drv.h | |
| parent | 08162e6a23d476544adfe1164afe9ea8b34ab859 (diff) | |
| parent | 69964ea4c7b68c9399f7977aa5b9aa6539a6a98a (diff) | |
| download | olio-linux-3.10-898bfc1d46bd76f8ea2a0fbd239dd2073efe2aa3.tar.xz olio-linux-3.10-898bfc1d46bd76f8ea2a0fbd239dd2073efe2aa3.zip  | |
Merge tag 'v3.4-rc5' into next
Linux 3.4-rc5
Merge to pull in prerequisite change for Smack:
86812bb0de1a3758dc6c7aa01a763158a7c0638a
Requested by Casey.
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_drv.h')
| -rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_drv.h | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.h b/drivers/gpu/drm/exynos/exynos_drm_drv.h index fbd0a232c93..1d814175cd4 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.h +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.h @@ -225,24 +225,25 @@ struct exynos_drm_private {   * Exynos drm sub driver structure.   *   * @list: sub driver has its own list object to register to exynos drm driver. + * @dev: pointer to device object for subdrv device driver.   * @drm_dev: pointer to drm_device and this pointer would be set   *	when sub driver calls exynos_drm_subdrv_register(). - * @is_local: appear encoder and connector disrelated device. + * @manager: subdrv has its own manager to control a hardware appropriately + *	and we can access a hardware drawing on this manager.   * @probe: this callback would be called by exynos drm driver after   *	subdrv is registered to it.   * @remove: this callback is used to release resources created   *	by probe callback.   * @open: this would be called with drm device file open.   * @close: this would be called with drm device file close. - * @manager: subdrv has its own manager to control a hardware appropriately - *	and we can access a hardware drawing on this manager.   * @encoder: encoder object owned by this sub driver.   * @connector: connector object owned by this sub driver.   */  struct exynos_drm_subdrv {  	struct list_head list; +	struct device *dev;  	struct drm_device *drm_dev; -	bool is_local; +	struct exynos_drm_manager *manager;  	int (*probe)(struct drm_device *drm_dev, struct device *dev);  	void (*remove)(struct drm_device *dev); @@ -251,7 +252,6 @@ struct exynos_drm_subdrv {  	void (*close)(struct drm_device *drm_dev, struct device *dev,  			struct drm_file *file); -	struct exynos_drm_manager manager;  	struct drm_encoder *encoder;  	struct drm_connector *connector;  };  |