summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/qoriq/irq
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-23 14:54:51 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-25 10:07:42 +0200
commit0d362ff397a42ec2fdae258a7cc61a8c07ffd8b5 (patch)
tree68af8a068a69832b2130efcce1be2c39a0ffc002 /bsps/powerpc/qoriq/irq
parenttm27: Fix prototype warnings (diff)
downloadrtems-0d362ff397a42ec2fdae258a7cc61a8c07ffd8b5.tar.bz2
score: _SMP_Inter_processor_interrupt_handler()
Pass current processor control via parameter since it may be already available at the caller side.
Diffstat (limited to 'bsps/powerpc/qoriq/irq')
-rw-r--r--bsps/powerpc/qoriq/irq/irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsps/powerpc/qoriq/irq/irq.c b/bsps/powerpc/qoriq/irq/irq.c
index 625b9fce1b..18ca0741e0 100644
--- a/bsps/powerpc/qoriq/irq/irq.c
+++ b/bsps/powerpc/qoriq/irq/irq.c
@@ -100,7 +100,7 @@ void bsp_interrupt_dispatch(uintptr_t exception_number)
#ifdef RTEMS_SMP
if (exception_number == 36) {
- _SMP_Inter_processor_interrupt_handler();
+ _SMP_Inter_processor_interrupt_handler(_Per_CPU_Get());
return;
}
#endif