diff mbox

[U-Boot] cmd_i2c: Use ARRAY_SIZE instead of reinventing it

Message ID 1371909395.8977.0.camel@phoenix
State Accepted
Delegated to: Heiko Schocher
Headers show

Commit Message

Axel Lin June 22, 2013, 1:56 p.m. UTC
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 common/cmd_i2c.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

Comments

Simon Glass June 25, 2013, 12:54 a.m. UTC | #1
On Sat, Jun 22, 2013 at 6:56 AM, Axel Lin <axel.lin@ingics.com> wrote:

> Signed-off-by: Axel Lin <axel.lin@ingics.com>
>

Missing commit message?

Otherwise:

Acked-by: Simon Glass <sjg@chromium.org>
Axel Lin June 25, 2013, 1:15 a.m. UTC | #2
2013/6/25 Simon Glass <sjg@chromium.org>:
> On Sat, Jun 22, 2013 at 6:56 AM, Axel Lin <axel.lin@ingics.com> wrote:
>>
>> Signed-off-by: Axel Lin <axel.lin@ingics.com>
>
>
> Missing commit message?

Because the subject line is already very clear.
And tools/checkpatch.pl does not complaint.

>
> Otherwise:
>
> Acked-by: Simon Glass <sjg@chromium.org>
>
>
diff mbox

Patch

diff --git a/common/cmd_i2c.c b/common/cmd_i2c.c
index 4380794..3215644 100644
--- a/common/cmd_i2c.c
+++ b/common/cmd_i2c.c
@@ -120,8 +120,6 @@  static uchar i2c_no_probes[] = CONFIG_SYS_I2C_NOPROBES;
 #define COMPARE_ADDR(a,i)	(i2c_no_probes[(i)] == (a))
 #define NO_PROBE_ADDR(i)	i2c_no_probes[(i)]
 #endif	/* CONFIG_MULTI_BUS */
-
-#define NUM_ELEMENTS_NOPROBE (sizeof(i2c_no_probes)/sizeof(i2c_no_probes[0]))
 #endif
 
 #if defined(CONFIG_I2C_MUX)
@@ -713,7 +711,7 @@  static int do_i2c_probe (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv
 
 #if defined(CONFIG_SYS_I2C_NOPROBES)
 		skip = 0;
-		for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
+		for (k = 0; k < ARRAY_SIZE(i2c_no_probes); k++) {
 			if (COMPARE_BUS(bus, k) && COMPARE_ADDR(j, k)) {
 				skip = 1;
 				break;
@@ -731,7 +729,7 @@  static int do_i2c_probe (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv
 
 #if defined(CONFIG_SYS_I2C_NOPROBES)
 	puts ("Excluded chip addresses:");
-	for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
+	for (k = 0; k < ARRAY_SIZE(i2c_no_probes); k++) {
 		if (COMPARE_BUS(bus,k))
 			printf(" %02X", NO_PROBE_ADDR(k));
 	}