mfd: wm5102: Insert missing break in case statement
Chip identifier wm5102_reva_patch is always overwritten with wm5102_revb_patch, even when the code is run on a Rev-A chip. Place in the missing break to force the code into doing something sensible instead. Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
9b6a5ad9da
commit
616e047992
@ -87,6 +87,7 @@ int wm5102_patch(struct arizona *arizona)
|
|||||||
case 0:
|
case 0:
|
||||||
wm5102_patch = wm5102_reva_patch;
|
wm5102_patch = wm5102_reva_patch;
|
||||||
patch_size = ARRAY_SIZE(wm5102_reva_patch);
|
patch_size = ARRAY_SIZE(wm5102_reva_patch);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
wm5102_patch = wm5102_revb_patch;
|
wm5102_patch = wm5102_revb_patch;
|
||||||
patch_size = ARRAY_SIZE(wm5102_revb_patch);
|
patch_size = ARRAY_SIZE(wm5102_revb_patch);
|
||||||
|
Loading…
Reference in New Issue
Block a user