diff options
author | Olaf Hering <olaf@aepfle.de> | 2007-06-24 08:57:08 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-07-10 13:55:46 +0200 |
commit | f5e6a280d153bff3b0cd15651d29d409f8dea698 (patch) | |
tree | de1f7bd9e6ebf561a1e5156562aadab34e6b83b3 | |
parent | [POWERPC] Make the debugfs "powerpc" dir globally accessible (diff) | |
download | linux-f5e6a280d153bff3b0cd15651d29d409f8dea698.tar.xz linux-f5e6a280d153bff3b0cd15651d29d409f8dea698.zip |
[POWERPC] Make two xmon variables static
xmon_early and xmon_off are only used in this file.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/xmon/xmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index 28fdf4f50c27..669e6566ad70 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c @@ -2634,7 +2634,7 @@ static int __init setup_xmon_sysrq(void) __initcall(setup_xmon_sysrq); #endif /* CONFIG_MAGIC_SYSRQ */ -int __initdata xmon_early, xmon_off; +static int __initdata xmon_early, xmon_off; static int __init early_parse_xmon(char *p) { |