diff options
author | Inki Dae <inki.dae@samsung.com> | 2014-04-14 12:55:55 +0900 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2014-06-02 02:07:04 +0900 |
commit | d1afe7d453abe5fa2c5adaf490581bac0d81dd95 (patch) | |
tree | 09435cc8b7de440c2a6b1a25cc0983ac7cc78010 | |
parent | ae08fe6c15e98a48523d36cc4d8f56f49957c14a (diff) | |
download | op-kernel-dev-d1afe7d453abe5fa2c5adaf490581bac0d81dd95.zip op-kernel-dev-d1afe7d453abe5fa2c5adaf490581bac0d81dd95.tar.gz |
drm/exynos: fix comment to exynos_drm_device_subdrv_prove call
subdrv_probe callback of virtual display driver will be
called by exynos_drm_device_subdrv_probe() to create crtc
and encoder/connector for virtual display driver.
So it fixes comments to exynos_drm_device_subdrv probe call.
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c index 5cdb2dc..df59407 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c @@ -109,7 +109,7 @@ static int exynos_drm_load(struct drm_device *dev, unsigned long flags) if (ret) goto err_cleanup_vblank; - /* Probe non kms sub drivers. */ + /* Probe non kms sub drivers and virtual display driver. */ ret = exynos_drm_device_subdrv_probe(dev); if (ret) goto err_unbind_all; |