From 906bf64de4d4a5fc32c7a46310f623896ef93dd1 Mon Sep 17 00:00:00 2001 From: Dmitry Torokhov Date: Tue, 3 Jan 2006 22:56:56 +0000 Subject: [PATCH] --- yaml --- r: 16723 b: refs/heads/master c: 63648fb5c0173614064e329503cc75c907dcb1a1 h: refs/heads/master i: 16721: 071b8bfdcdd5a9663fd97660e7a0413092b9c477 16719: f505c461f9db53c8b52755124388e8e7855239fe v: v3 --- [refs] | 2 +- trunk/drivers/mmc/wbsd.c | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/[refs] b/[refs] index 4d372520c9a3..6cec7b9fe633 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: a6f6c96b65d7f65a7a7bf5cbe874eda182a6b2cc +refs/heads/master: 63648fb5c0173614064e329503cc75c907dcb1a1 diff --git a/trunk/drivers/mmc/wbsd.c b/trunk/drivers/mmc/wbsd.c index c7eb7c269081..9df0ddeb3ff9 100644 --- a/trunk/drivers/mmc/wbsd.c +++ b/trunk/drivers/mmc/wbsd.c @@ -1456,13 +1456,11 @@ static int __devinit wbsd_scan(struct wbsd_host* host) * Iterate through all ports, all codes to * find hardware that is in our known list. */ - for (i = 0;i < sizeof(config_ports)/sizeof(int);i++) - { + for (i = 0; i < ARRAY_SIZE(config_ports); i++) { if (!request_region(config_ports[i], 2, DRIVER_NAME)) continue; - for (j = 0;j < sizeof(unlock_codes)/sizeof(int);j++) - { + for (j = 0; j < ARRAY_SIZE(unlock_codes); j++) { id = 0xFFFF; host->config = config_ports[i]; @@ -1478,8 +1476,7 @@ static int __devinit wbsd_scan(struct wbsd_host* host) wbsd_lock_config(host); - for (k = 0;k < sizeof(valid_ids)/sizeof(int);k++) - { + for (k = 0; k < ARRAY_SIZE(valid_ids); k++) { if (id == valid_ids[k]) { host->chip_id = id;