diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2016-02-19 08:18:11 +0530 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2016-02-24 11:07:32 +0530 |
commit | d73b73f5626ac0b131b31b7b9457e19201bc570b (patch) | |
tree | a18e34e5a030277ad20ba88186cd3e4211a3d5c6 /arch/arc/kernel/smp.c | |
parent | 3dea30ca5bef0e013abe857057a952a9d6757fe5 (diff) | |
download | linux-d73b73f5626ac0b131b31b7b9457e19201bc570b.tar.bz2 |
ARC: SMP: No need for CONFIG_ARC_IPI_DBG
This was more relevant during SMP bringup.
The warning for bogus msg better be visible always.
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/kernel/smp.c')
-rw-r--r-- | arch/arc/kernel/smp.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c index ef6e9e15b82a..424e937da5c8 100644 --- a/arch/arc/kernel/smp.c +++ b/arch/arc/kernel/smp.c @@ -336,11 +336,8 @@ irqreturn_t do_IPI(int irq, void *dev_id) int rc; rc = __do_IPI(msg); -#ifdef CONFIG_ARC_IPI_DBG - /* IPI received but no valid @msg */ if (rc) pr_info("IPI with bogus msg %ld in %ld\n", msg, copy); -#endif pending &= ~(1U << msg); } while (pending); |