summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/exynos/exynos_drm_drv.c
diff options
context:
space:
mode:
authorSean Paul <seanpaul@chromium.org>2014-01-30 16:19:11 -0500
committerChanho Park <chanho61.park@samsung.com>2014-11-18 11:47:33 +0900
commit8d2d8033c318fa8dad1d24439400dba6ad820668 (patch)
tree5b7c15034751ad1d5a3306d893237acd0ecdf4e4 /drivers/gpu/drm/exynos/exynos_drm_drv.c
parent76a71c358bcfcfcbeedd774a7c4e97e069813c4e (diff)
downloadlinux-3.10-8d2d8033c318fa8dad1d24439400dba6ad820668.tar.gz
linux-3.10-8d2d8033c318fa8dad1d24439400dba6ad820668.tar.bz2
linux-3.10-8d2d8033c318fa8dad1d24439400dba6ad820668.zip
drm/exynos: Use unsigned long for possible_crtcs
Change all instances of possible_crtcs in the exynos drm driver to be unsigned long. This matches the type used in the drm layer. Signed-off-by: Sean Paul <seanpaul@chromium.org> Reviewed-by: Tomasz Figa <t.figa@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_drv.c')
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_drv.c2
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 eba3e80bc81..ef659d7d654 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_drv.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c
@@ -85,7 +85,7 @@ static int exynos_drm_load(struct drm_device *dev, unsigned long flags)
for (nr = 0; nr < MAX_PLANE; nr++) {
struct drm_plane *plane;
- unsigned int possible_crtcs = (1 << MAX_CRTC) - 1;
+ unsigned long possible_crtcs = (1 << MAX_CRTC) - 1;
plane = exynos_plane_init(dev, possible_crtcs, false);
if (!plane)