diff options
author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2016-07-19 13:23:56 +0100 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2016-08-08 10:58:35 +0900 |
commit | c19dc203e61886b4e61201832adc4da2816c5def (patch) | |
tree | 2e83337ed89608426728e87d59cfa723c08f0cab /drivers/extcon | |
parent | e8752b7a7294a7c19545123eea079d873f8cc243 (diff) | |
download | linux-c19dc203e61886b4e61201832adc4da2816c5def.tar.gz linux-c19dc203e61886b4e61201832adc4da2816c5def.tar.xz |
extcon: arizona: Remove unneeded semi-colon
There is no need for a semi-colon at the end of a switch statement so
remove it.
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon')
-rw-r--r-- | drivers/extcon/extcon-arizona.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c index 1d8e0a57bd51..be4d93d4c546 100644 --- a/drivers/extcon/extcon-arizona.c +++ b/drivers/extcon/extcon-arizona.c @@ -183,7 +183,7 @@ static void arizona_extcon_hp_clamp(struct arizona_extcon_info *info, if (clamp) val = ARIZONA_RMV_SHRT_HP1L; break; - }; + } snd_soc_dapm_mutex_lock(arizona->dapm); |