drm: Use ARRAY_SIZE macro when appropriate
Use ARRAY_SIZE macro already defined in kernel.h Signed-off-by: Ahmed S. Darwish <darwish.07@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
parent
f54d1e40b2
commit
8311d570bc
|
@ -72,7 +72,7 @@ static struct drm_proc_list {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#define DRM_PROC_ENTRIES (sizeof(drm_proc_list)/sizeof(drm_proc_list[0]))
|
#define DRM_PROC_ENTRIES ARRAY_SIZE(drm_proc_list)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the DRI proc filesystem for a device.
|
* Initialize the DRI proc filesystem for a device.
|
||||||
|
|
Loading…
Reference in New Issue