summaryrefslogtreecommitdiffstats
path: root/include/asm-parisc
diff options
context:
space:
mode:
authorKyle McMartin <kyle@parisc-linux.org>2005-11-17 16:27:44 -0500
committerKyle McMartin <kyle@parisc-linux.org>2005-11-17 16:27:44 -0500
commit1d4c452a85503cdb4bca5925cf698b61d3aa43a0 (patch)
treecd2c786aa4dbab46d4aa394ffdaa8cd52387d894 /include/asm-parisc
parentd911aed8adf74e1fae88d082b8474b2175b7f1da (diff)
downloadop-kernel-dev-1d4c452a85503cdb4bca5925cf698b61d3aa43a0.zip
op-kernel-dev-1d4c452a85503cdb4bca5925cf698b61d3aa43a0.tar.gz
[PARISC] Fix uniprocessor build by dummying smp_send_all_nop()
Since irq.c uses smp_send_all_nop, we must define it for UP builds as well. Make it a static inline so it gets optimized away. This forces irq.c to include <asm/smp.h> though. Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'include/asm-parisc')
-rw-r--r--include/asm-parisc/smp.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/asm-parisc/smp.h b/include/asm-parisc/smp.h
index a519195..dbdbd2e 100644
--- a/include/asm-parisc/smp.h
+++ b/include/asm-parisc/smp.h
@@ -54,7 +54,11 @@ extern unsigned long cpu_present_mask;
#define raw_smp_processor_id() (current_thread_info()->cpu)
-#endif /* CONFIG_SMP */
+#else /* CONFIG_SMP */
+
+static inline void smp_send_all_nop(void) { return; }
+
+#endif
#define NO_PROC_ID 0xFF /* No processor magic marker */
#define ANY_PROC_ID 0xFF /* Any processor magic marker */
OpenPOWER on IntegriCloud