Commit aa5e5c9b authored by Nathan Lynch's avatar Nathan Lynch Committed by Michael Ellerman

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: default avatarNathan Lynch <nathanl@linux.ibm.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20201207215200.1785968-9-nathanl@linux.ibm.com
parent b06a6717
...@@ -213,6 +213,7 @@ static int update_dt_node(__be32 phandle, s32 scope) ...@@ -213,6 +213,7 @@ static int update_dt_node(__be32 phandle, s32 scope)
} }
prop_data += vd; prop_data += vd;
break;
} }
cond_resched(); cond_resched();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment