diff options
author | Nathan Lynch <nathanl@linux.ibm.com> | 2020-12-08 00:51:40 +0300 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2020-12-08 13:40:56 +0300 |
commit | aa5e5c9b556a2e5f68a915e4b5dfa5c6bda47c64 (patch) | |
tree | 113e45b323f30a0c697cbba807c8b807883b7242 /arch | |
parent | b06a6717873560e9dd1c07357781fc2b27545701 (diff) | |
download | linux-aa5e5c9b556a2e5f68a915e4b5dfa5c6bda47c64.tar.xz |
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 <nathanl@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20201207215200.1785968-9-nathanl@linux.ibm.com
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/pseries/mobility.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/pseries/mobility.c b/arch/powerpc/platforms/pseries/mobility.c index e66359b00297..527a64e2d89f 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(); |