diff options
author | Wan Jiabing <wanjiabing@vivo.com> | 2021-04-09 14:49:20 +0800 |
---|---|---|
committer | Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> | 2021-05-11 08:29:40 -0400 |
commit | 0de0b04c83430ee913c9683369b7059e04e106cb (patch) | |
tree | a4c2bc5ba0a0a1b837a1276dee0aa35f85b0eddb /arch/arm/mach-s3c | |
parent | 6efb943b8616ec53a5e444193dccf1af9ad627b5 (diff) |
ARM: s3c: Remove unnecessary break in RX1950
There is a return above the break. The break here is unnecessary.
Remove it.
Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>
Link: https://lore.kernel.org/r/20210409064920.1096367-1-wanjiabing@vivo.com
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Diffstat (limited to 'arch/arm/mach-s3c')
-rw-r--r-- | arch/arm/mach-s3c/mach-rx1950.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c/mach-rx1950.c b/arch/arm/mach-s3c/mach-rx1950.c index a3f46aa61c45..313e080e179e 100644 --- a/arch/arm/mach-s3c/mach-rx1950.c +++ b/arch/arm/mach-s3c/mach-rx1950.c @@ -271,7 +271,6 @@ static int rx1950_led_blink_set(struct gpio_desc *desc, int state, break; default: return -EINVAL; - break; } if (delay_on && delay_off && !*delay_on && !*delay_off) |