diff options
author | Lee Jones <lee.jones@linaro.org> | 2014-08-18 18:05:01 +0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-09-26 11:15:31 +0400 |
commit | 616e047992a4621a09ef45182076ff09b2495dec (patch) | |
tree | f20e6114e9d13ec668fc9acc2d8b1eeb1914fc4e /drivers/mfd/wm5102-tables.c | |
parent | 9b6a5ad9da4118e8c2a087501ddff33f51a9e6ba (diff) | |
download | linux-616e047992a4621a09ef45182076ff09b2495dec.tar.xz |
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>
Diffstat (limited to 'drivers/mfd/wm5102-tables.c')
-rw-r--r-- | drivers/mfd/wm5102-tables.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/wm5102-tables.c b/drivers/mfd/wm5102-tables.c index fb4d4bb0f47d..a219888d7f4b 100644 --- a/drivers/mfd/wm5102-tables.c +++ b/drivers/mfd/wm5102-tables.c @@ -87,6 +87,7 @@ int wm5102_patch(struct arizona *arizona) case 0: wm5102_patch = wm5102_reva_patch; patch_size = ARRAY_SIZE(wm5102_reva_patch); + break; default: wm5102_patch = wm5102_revb_patch; patch_size = ARRAY_SIZE(wm5102_revb_patch); |