The last user of __ARCH_SET_SOFTIRQ_PENDING has been converted to generic per-cpu softirq mask. We can now remove this conditional.
Signed-off-by: Frederic Weisbecker <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Sebastian Andrzej Siewior <[email protected]> Cc: David S. Miller <[email protected]> Cc: Benjamin Herrenschmidt <[email protected]> Cc: Paul Mackerras <[email protected]> Cc: Michael Ellerman <[email protected]> Cc: James E.J. Bottomley <[email protected]> Cc: Helge Deller <[email protected]> Cc: Tony Luck <[email protected]> Cc: Fenghua Yu <[email protected]> --- include/linux/interrupt.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 01caeca..4237618 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -446,10 +446,8 @@ extern bool force_irqthreads; #else /* local_softirq_pending */ -#ifndef __ARCH_SET_SOFTIRQ_PENDING #define set_softirq_pending(x) (local_softirq_pending() = (x)) #define or_softirq_pending(x) (local_softirq_pending() |= (x)) -#endif #endif /* local_softirq_pending */ -- 2.7.4

