mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-14 17:14:09 +00:00
[MIPS] Yosemite: Fix warning.
arch/mips/pmc-sierra/yosemite/smp.c: In function 'titan_mailbox_irq': arch/mips/pmc-sierra/yosemite/smp.c:112: warning: 'status' may be used uninitialized in this function Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
e0a725a746
commit
e9c227f9ec
@ -111,18 +111,23 @@ void titan_mailbox_irq(void)
|
||||
int cpu = smp_processor_id();
|
||||
unsigned long status;
|
||||
|
||||
if (cpu == 0) {
|
||||
switch (cpu) {
|
||||
case 0:
|
||||
status = OCD_READ(RM9000x2_OCD_INTP0STATUS3);
|
||||
OCD_WRITE(RM9000x2_OCD_INTP0CLEAR3, status);
|
||||
}
|
||||
|
||||
if (cpu == 1) {
|
||||
if (status & 0x2)
|
||||
smp_call_function_interrupt();
|
||||
break;
|
||||
|
||||
case 1:
|
||||
status = OCD_READ(RM9000x2_OCD_INTP1STATUS3);
|
||||
OCD_WRITE(RM9000x2_OCD_INTP1CLEAR3, status);
|
||||
}
|
||||
|
||||
if (status & 0x2)
|
||||
smp_call_function_interrupt();
|
||||
if (status & 0x2)
|
||||
smp_call_function_interrupt();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user