diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-05-16 17:08:53 +0200 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2012-06-05 11:53:58 +0900 |
commit | 293a1c128ecc523e9a74252ca64220d8081be759 (patch) | |
tree | 2fa6f18d904c503e76f28eae1fd6d9bb5f3cb795 /drivers/gpu | |
parent | 13b87b27421e12f82ebbaac018cea30f82e5c33e (diff) | |
download | linux-3.10-293a1c128ecc523e9a74252ca64220d8081be759.tar.gz linux-3.10-293a1c128ecc523e9a74252ca64220d8081be759.tar.bz2 linux-3.10-293a1c128ecc523e9a74252ca64220d8081be759.zip |
drm/exynos: DRIVER_BUS_PLATFORM is not a driver feature
DRIVER_BUS_PLATFORM is a bus type used internally in the DRM core, not a
flag for the drm_driver::driver_features field.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c index 420953197d0..d6de2e07fa0 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c @@ -244,8 +244,8 @@ static const struct file_operations exynos_drm_driver_fops = { }; static struct drm_driver exynos_drm_driver = { - .driver_features = DRIVER_HAVE_IRQ | DRIVER_BUS_PLATFORM | - DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME, + .driver_features = DRIVER_HAVE_IRQ | DRIVER_MODESET | + DRIVER_GEM | DRIVER_PRIME, .load = exynos_drm_load, .unload = exynos_drm_unload, .open = exynos_drm_open, |