summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Ellerman2016-07-07 14:54:27 +0200
committerMichael Ellerman2016-07-14 12:26:23 +0200
commit13629dad1e30e310bb21baa102d1c0dcc17b47ae (patch)
tree8fcaf70e52a25015486884b9e0e8d199a2201a61
parentpowerpc/xmon: Remove unused externs (diff)
downloadkernel-qcow2-linux-13629dad1e30e310bb21baa102d1c0dcc17b47ae.tar.gz
kernel-qcow2-linux-13629dad1e30e310bb21baa102d1c0dcc17b47ae.tar.xz
kernel-qcow2-linux-13629dad1e30e310bb21baa102d1c0dcc17b47ae.zip
powerpc/xmon: Move static regno into its only user
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r--arch/powerpc/xmon/xmon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index f351ba6a58ab..369501283994 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -1682,7 +1682,6 @@ write_spr(int n, unsigned long val)
catch_spr_faults = 0;
}
-static unsigned long regno;
static void dump_one_spr(int spr, bool show_unimplemented)
{
@@ -1714,6 +1713,7 @@ static void dump_one_spr(int spr, bool show_unimplemented)
static void super_regs(void)
{
+ static unsigned long regno;
int cmd;
int spr;