Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 41c24346 authored by Inki Dae's avatar Inki Dae Committed by Dave Airlie
Browse files

drm/exynos: added device object as argument of subdrv_probe().



sub drivers should refer to its own device object to access
its own context.

Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 8e9cc6a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ static int exynos_drm_subdrv_probe(struct drm_device *dev,
		 *
		 * P.S. note that this driver is considered for modularization.
		 */
		ret = subdrv->probe(dev);
		ret = subdrv->probe(dev, subdrv->manager.dev);
		if (ret)
			return ret;
	}
+1 −1
Original line number Diff line number Diff line
@@ -219,7 +219,7 @@ struct exynos_drm_subdrv {
	struct list_head list;
	struct drm_device *drm_dev;

	int (*probe)(struct drm_device *dev);
	int (*probe)(struct drm_device *drm_dev, struct device *dev);
	void (*remove)(struct drm_device *dev);

	struct exynos_drm_manager manager;
+1 −1
Original line number Diff line number Diff line
@@ -538,7 +538,7 @@ static irqreturn_t fimd_irq_handler(int irq, void *dev_id)
	return IRQ_HANDLED;
}

static int fimd_subdrv_probe(struct drm_device *drm_dev)
static int fimd_subdrv_probe(struct drm_device *drm_dev, struct device *dev)
{
	struct drm_driver *drm_driver = drm_dev->driver;