From: Nathan Lynch Date: Mon, 7 Dec 2020 21:51:40 +0000 (-0600) Subject: powerpc/pseries/mobility: add missing break to default case X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=aa5e5c9b556a2e5f68a915e4b5dfa5c6bda47c64;p=linux.git powerpc/pseries/mobility: add missing break to default case update_dt_node() has a switch statement where the default case lacks a break statement. Signed-off-by: Nathan Lynch Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/20201207215200.1785968-9-nathanl@linux.ibm.com --- diff --git a/arch/powerpc/platforms/pseries/mobility.c b/arch/powerpc/platforms/pseries/mobility.c index e66359b00297a..527a64e2d89f7 100644 --- a/arch/powerpc/platforms/pseries/mobility.c +++ b/arch/powerpc/platforms/pseries/mobility.c @@ -213,6 +213,7 @@ static int update_dt_node(__be32 phandle, s32 scope) } prop_data += vd; + break; } cond_resched();