aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc/kernel
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2012-05-20 00:22:11 -0400
committerDavid S. Miller <davem@davemloft.net>2012-05-20 00:22:11 -0400
commit0bfcee9ad369aca590211a4a8fffd28f1ed39a82 (patch)
treedb42df0892446b1d0e686d63dfc04886506bfe8f /arch/sparc/kernel
parentd0be6b16c34e87cccadc55ac21bb88d46db75493 (diff)
sparc32: Move GET_PROCESSOR*_ID() out of asm/asmmacro.h
GET_PROCESSOR4D_ID is completely unused, so delete it. Move GET_PROCESSOR4M_ID to the sun4m specific trap code which uses it. We now no longer need to include asm/asi.h Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel')
-rw-r--r--arch/sparc/kernel/entry.S5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/sparc/kernel/entry.S b/arch/sparc/kernel/entry.S
index 3f3976e0e98f..2dbe1806e530 100644
--- a/arch/sparc/kernel/entry.S
+++ b/arch/sparc/kernel/entry.S
@@ -254,6 +254,11 @@ smp4m_ticker:
254 WRITE_PAUSE 254 WRITE_PAUSE
255 RESTORE_ALL 255 RESTORE_ALL
256 256
257#define GET_PROCESSOR4M_ID(reg) \
258 rd %tbr, %reg; \
259 srl %reg, 12, %reg; \
260 and %reg, 3, %reg;
261
257 /* Here is where we check for possible SMP IPI passed to us 262 /* Here is where we check for possible SMP IPI passed to us
258 * on some level other than 15 which is the NMI and only used 263 * on some level other than 15 which is the NMI and only used
259 * for cross calls. That has a separate entry point below. 264 * for cross calls. That has a separate entry point below.