diff options
author | Arnd Bergmann <arnd@arndb.de> | 2006-01-11 00:00:03 +0000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-12 20:39:13 +1100 |
commit | ff38e7c80a92de91b34e483478d81eb3d1cf1b37 (patch) | |
tree | 766b675af3d0ad5498376e0cdc1d4c9bd2e83ab6 /arch | |
parent | 8446196ade39befe68f60cfae49c43b94a1144fc (diff) | |
download | op-kernel-dev-ff38e7c80a92de91b34e483478d81eb3d1cf1b37.zip op-kernel-dev-ff38e7c80a92de91b34e483478d81eb3d1cf1b37.tar.gz |
[PATCH] powerpc: pmac namespace cleanup
pmac_setup_arch is only used in the file that it is defined in,
so it should not be in the global namespace.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/powermac/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/powermac/setup.c b/arch/powerpc/platforms/powermac/setup.c index 3b1a9d4..89c4c36 100644 --- a/arch/powerpc/platforms/powermac/setup.c +++ b/arch/powerpc/platforms/powermac/setup.c @@ -278,7 +278,7 @@ static void __init l2cr_init(void) } #endif -void __init pmac_setup_arch(void) +static void __init pmac_setup_arch(void) { struct device_node *cpu, *ic; int *fp; |