]> git.karo-electronics.de Git - linux-beck.git/commitdiff
powerpc: ARRAY_SIZE changes in pasemi and powermac code
authorStoyan Gaydarov <sgayda2@uiuc.edu>
Tue, 21 Jul 2009 17:02:31 +0000 (17:02 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Thu, 20 Aug 2009 00:29:23 +0000 (10:29 +1000)
These changes were a direct result of using a semantic patch
More information can be found at http://www.emn.fr/x-info/coccinelle/

Signed-off-by: Stoyan Gaydarov <sgayda2@uiuc.edu>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/platforms/pasemi/idle.c
arch/powerpc/platforms/powermac/feature.c

index 43911d8b0206bb9e3d423ca4e9c12901634ad6b8..75b296bc51af7afe259d2cc0c70653c0438a01f1 100644 (file)
@@ -90,7 +90,7 @@ machine_late_initcall(pasemi, pasemi_idle_init);
 static int __init idle_param(char *p)
 {
        int i;
-       for (i = 0; i < sizeof(modes)/sizeof(struct sleep_mode); i++) {
+       for (i = 0; i < ARRAY_SIZE(modes); i++) {
                if (!strcmp(modes[i].name, p)) {
                        current_mode = i;
                        break;
index e6c0040ee79752c9721d5b69fbb29dd057de42ef..095de3227d838114442ca7e4ca7af19b761277c8 100644 (file)
@@ -2419,13 +2419,13 @@ static int __init probe_motherboard(void)
        dt = of_find_node_by_name(NULL, "device-tree");
        if (dt != NULL)
                model = of_get_property(dt, "model", NULL);
-       for(i=0; model && i<(sizeof(pmac_mb_defs)/sizeof(struct pmac_mb_def)); i++) {
+       for(i=0; model && i<ARRAY_SIZE(pmac_mb_defs); i++) {
            if (strcmp(model, pmac_mb_defs[i].model_string) == 0) {
                pmac_mb = pmac_mb_defs[i];
                goto found;
            }
        }
-       for(i=0; i<(sizeof(pmac_mb_defs)/sizeof(struct pmac_mb_def)); i++) {
+       for(i=0; i<ARRAY_SIZE(pmac_mb_defs); i++) {
            if (machine_is_compatible(pmac_mb_defs[i].model_string)) {
                pmac_mb = pmac_mb_defs[i];
                goto found;