Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a22ebd06 authored by Josh Boyer's avatar Josh Boyer
Browse files

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: default avatarJosh Boyer <jwboyer@linux.vnet.ibm.com>
parent ba703e1a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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)