aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/exynos/exynos_drm_drv.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_drv.h')
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_drv.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.h b/drivers/gpu/drm/exynos/exynos_drm_drv.h
index a41245402ce4..b26c2f4425d1 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_drv.h
+++ b/drivers/gpu/drm/exynos/exynos_drm_drv.h
@@ -225,6 +225,7 @@ struct exynos_drm_private {
225 * @list: sub driver has its own list object to register to exynos drm driver. 225 * @list: sub driver has its own list object to register to exynos drm driver.
226 * @drm_dev: pointer to drm_device and this pointer would be set 226 * @drm_dev: pointer to drm_device and this pointer would be set
227 * when sub driver calls exynos_drm_subdrv_register(). 227 * when sub driver calls exynos_drm_subdrv_register().
228 * @is_local: appear encoder and connector disrelated device.
228 * @probe: this callback would be called by exynos drm driver after 229 * @probe: this callback would be called by exynos drm driver after
229 * subdrv is registered to it. 230 * subdrv is registered to it.
230 * @remove: this callback is used to release resources created 231 * @remove: this callback is used to release resources created
@@ -239,6 +240,7 @@ struct exynos_drm_private {
239struct exynos_drm_subdrv { 240struct exynos_drm_subdrv {
240 struct list_head list; 241 struct list_head list;
241 struct drm_device *drm_dev; 242 struct drm_device *drm_dev;
243 bool is_local;
242 244
243 int (*probe)(struct drm_device *drm_dev, struct device *dev); 245 int (*probe)(struct drm_device *drm_dev, struct device *dev);
244 void (*remove)(struct drm_device *dev); 246 void (*remove)(struct drm_device *dev);