diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2007-11-29 14:44:36 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-01-16 22:56:54 -0500 |
commit | 26cb7d8bbddc8338904b8810b860ccf052c761fa (patch) | |
tree | 24a183faa00bcee80453ca1fa65f414ddea8d141 /arch/powerpc/sysdev/fsl_soc.c | |
parent | 283029d16a882539ab0027afd94ac52858d050b2 (diff) |
[POWERPC] Use for_each macros in arch/powerpc/sysdev
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/sysdev/fsl_soc.c')
-rw-r--r-- | arch/powerpc/sysdev/fsl_soc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/powerpc/sysdev/fsl_soc.c b/arch/powerpc/sysdev/fsl_soc.c index 4baad80ab731..217bcc2e8f86 100644 --- a/arch/powerpc/sysdev/fsl_soc.c +++ b/arch/powerpc/sysdev/fsl_soc.c | |||
@@ -1128,13 +1128,12 @@ arch_initcall(fs_enet_of_init); | |||
1128 | 1128 | ||
1129 | static int __init fsl_pcmcia_of_init(void) | 1129 | static int __init fsl_pcmcia_of_init(void) |
1130 | { | 1130 | { |
1131 | struct device_node *np = NULL; | 1131 | struct device_node *np; |
1132 | /* | 1132 | /* |
1133 | * Register all the devices which type is "pcmcia" | 1133 | * Register all the devices which type is "pcmcia" |
1134 | */ | 1134 | */ |
1135 | while ((np = of_find_compatible_node(np, | 1135 | for_each_compatible_node(np, "pcmcia", "fsl,pq-pcmcia") |
1136 | "pcmcia", "fsl,pq-pcmcia")) != NULL) | 1136 | of_platform_device_create(np, "m8xx-pcmcia", NULL); |
1137 | of_platform_device_create(np, "m8xx-pcmcia", NULL); | ||
1138 | return 0; | 1137 | return 0; |
1139 | } | 1138 | } |
1140 | 1139 | ||