diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2014-06-09 15:39:49 +0200 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-06-10 01:36:17 +0200 |
commit | f95aeb17f57c4c98b7f33627e5f51353fd094a93 (patch) | |
tree | 4c821c2597989284072e77f9be08beb03fb4c4f3 /drivers/gpu/drm/gma500 | |
parent | drm: Remove spurious ';' (diff) | |
download | linux-f95aeb17f57c4c98b7f33627e5f51353fd094a93.tar.xz linux-f95aeb17f57c4c98b7f33627e5f51353fd094a93.zip |
drm: Remove DRM_ARRAY_SIZE() for ARRAY_SIZE()
I cannot see a need to provide a DRM_ version of ARRAY_SIZE(), only used
in a few places. I suspect its usage has been spread by copy & paste
rather than anything else.
Let's just remove it for plain ARRAY_SIZE().
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/gma500')
-rw-r--r-- | drivers/gpu/drm/gma500/psb_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/gma500/psb_drv.c b/drivers/gpu/drm/gma500/psb_drv.c index 59ea45e5c97e..6e8fe9ec02b5 100644 --- a/drivers/gpu/drm/gma500/psb_drv.c +++ b/drivers/gpu/drm/gma500/psb_drv.c @@ -477,7 +477,7 @@ static struct drm_driver driver = { .lastclose = psb_driver_lastclose, .preclose = psb_driver_preclose, - .num_ioctls = DRM_ARRAY_SIZE(psb_ioctls), + .num_ioctls = ARRAY_SIZE(psb_ioctls), .device_is_agp = psb_driver_device_is_agp, .irq_preinstall = psb_irq_preinstall, .irq_postinstall = psb_irq_postinstall, |