[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1277726101-24567-1-git-send-email-segooon@gmail.com>
Date: Mon, 28 Jun 2010 15:55:00 +0400
From: Kulikov Vasiliy <segooon@...il.com>
To: trivial@...nel.org
Cc: Kernel Janitors <kernel-janitors@...r.kernel.org>,
David Airlie <airlied@...ux.ie>, Eric Anholt <eric@...olt.net>,
Zhenyu Wang <zhenyuw@...ux.intel.com>,
Zhao Yakui <yakui.zhao@...el.com>, Ma Ling <ling.ma@...el.com>,
Kulikov Vasiliy <segooon@...il.com>,
dri-devel@...ts.freedesktop.org, linux-kernel@...r.kernel.org
Subject: [PATCH 05/16] trivial: use ARRAY_SIZE
Change sizeof(x) / sizeof(*x) to ARRAY_SIZE(x).
Signed-off-by: Kulikov Vasiliy <segooon@...il.com>
---
drivers/gpu/drm/i915/intel_tv.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_tv.c b/drivers/gpu/drm/i915/intel_tv.c
index 6d553c2..d2d4e40 100644
--- a/drivers/gpu/drm/i915/intel_tv.c
+++ b/drivers/gpu/drm/i915/intel_tv.c
@@ -1424,7 +1424,7 @@ intel_tv_get_modes(struct drm_connector *connector)
int j, count = 0;
u64 tmp;
- for (j = 0; j < sizeof(input_res_table) / sizeof(input_res_table[0]);
+ for (j = 0; j < ARRAY_SIZE(input_res_table);
j++) {
struct input_res *input = &input_res_table[j];
unsigned int hactive_s = input->w;
--
1.7.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists