drm: fix warning in drm_fops.c
drivers/char/drm/drm_fops.c: In function 'drm_setup': drivers/char/drm/drm_fops.c:60: warning: comparison of distinct pointer types lacks a cast Unfortunately PAGE_SIZE has different types on different architectures. Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
parent
99da6d861c
commit
4b560fde06
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ static int drm_setup(drm_device_t * dev)
|
||||||
dev->magicfree.next = NULL;
|
dev->magicfree.next = NULL;
|
||||||
|
|
||||||
/* prebuild the SAREA */
|
/* prebuild the SAREA */
|
||||||
sareapage = max(SAREA_MAX, PAGE_SIZE);
|
sareapage = max_t(unsigned, SAREA_MAX, PAGE_SIZE);
|
||||||
i = drm_addmap(dev, 0, sareapage, _DRM_SHM, _DRM_CONTAINS_LOCK, &map);
|
i = drm_addmap(dev, 0, sareapage, _DRM_SHM, _DRM_CONTAINS_LOCK, &map);
|
||||||
if (i != 0)
|
if (i != 0)
|
||||||
return i;
|
return i;
|
||||||
|
|
Loading…
Reference in a new issue