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
This commit is contained in:
Nathan Lynch 2020-12-07 15:51:40 -06:00 коммит произвёл Michael Ellerman
Родитель b06a671787
Коммит aa5e5c9b55
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -213,6 +213,7 @@ static int update_dt_node(__be32 phandle, s32 scope)
}
prop_data += vd;
break;
}
cond_resched();