diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2013-11-25 04:07:14 -0500 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2013-12-23 01:35:04 -0500 |
commit | ccdaa6e0c86d8f48bf87439e4d6942b7a3e58899 (patch) | |
tree | 6dab9bddf9d3b1abeffe72ce42ac33ba0d409f6d /arch/arc/plat-arcfpga | |
parent | ddf84433f411b612e935a6719ee395bb9dd2221f (diff) |
ARC: [SMP] IPI ACK interface doesn't need "self" cpu-id
The interface is confusing, it feels like we are getting "sender" info,
whereas it is the "receiver", which can very well be retrived by
smp_processor_id(), if need be.
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/plat-arcfpga')
-rw-r--r-- | arch/arc/plat-arcfpga/smp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arc/plat-arcfpga/smp.c b/arch/arc/plat-arcfpga/smp.c index 5e4fe959665c..8a12741f5f7a 100644 --- a/arch/arc/plat-arcfpga/smp.c +++ b/arch/arc/plat-arcfpga/smp.c | |||
@@ -93,9 +93,9 @@ static void iss_model_ipi_send(int cpu) | |||
93 | idu_irq_assert(cpu); | 93 | idu_irq_assert(cpu); |
94 | } | 94 | } |
95 | 95 | ||
96 | static void iss_model_ipi_clear(int cpu, int irq) | 96 | static void iss_model_ipi_clear(int irq) |
97 | { | 97 | { |
98 | idu_irq_clear(IDU_INTERRUPT_0 + cpu); | 98 | idu_irq_clear(IDU_INTERRUPT_0 + smp_processor_id()); |
99 | } | 99 | } |
100 | 100 | ||
101 | void iss_model_init_early_smp(void) | 101 | void iss_model_init_early_smp(void) |