powerpc/44x: Fix build error with -Werror for Warp platform
With -Werror enabled during the build, the warp.c file fails to build due to the temp_isr function not containing a return statement. This fixes the build error and documents that the function never returns. Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
This commit is contained in:
Родитель
ba703e1a7a
Коммит
a22ebd069d
|
@ -163,6 +163,9 @@ static irqreturn_t temp_isr(int irq, void *context)
|
|||
value ^= 1;
|
||||
mdelay(500);
|
||||
}
|
||||
|
||||
/* Not reached */
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int pika_setup_leds(void)
|
||||
|
|
Загрузка…
Ссылка в новой задаче