Commit 479857a9 authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva

powerpc/powernv: Fix fall-through warning for Clang

Fix the following fallthrough warnings (powernv_defconfig and powerpc64):

drivers/char/powernv-op-panel.c:78:2: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough]
Reported-by: default avatarNathan Chancellor <nathan@kernel.org>
Signed-off-by: default avatarGustavo A. R. Silva <gustavoars@kernel.org>
parent cf6678ae
......@@ -75,6 +75,7 @@ static int __op_panel_update_display(void)
rc);
break;
}
break;
case OPAL_SUCCESS:
break;
default:
......
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