drm/i915/tv: fix open-coded ARRAY_SIZE.
Signed-off-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
31b14c9fc5
commit
3801a7fd86
|
@ -811,7 +811,7 @@ intel_tv_mode_lookup(const char *tv_format)
|
|||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < sizeof(tv_modes) / sizeof(tv_modes[0]); i++) {
|
||||
for (i = 0; i < ARRAY_SIZE(tv_modes); i++) {
|
||||
const struct tv_mode *tv_mode = &tv_modes[i];
|
||||
|
||||
if (!strcmp(tv_format, tv_mode->name))
|
||||
|
|
Loading…
Reference in New Issue