summaryrefslogtreecommitdiffstats
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavoars@kernel.org>2020-11-20 12:36:04 -0600
committerGustavo A. R. Silva <gustavoars@kernel.org>2021-05-17 19:50:23 -0500
commit3752445d79ee73fc2cb08c35c82890b2ef5c9757 (patch)
treec596bb6604b8b188814d36dd8dd418c82720ac0d /drivers/hwmon
parent5ef73b6e652107bbdcf65d10a477cfc027ee9090 (diff)
downloadlinux-3752445d79ee73fc2cb08c35c82890b2ef5c9757.tar.gz
linux-3752445d79ee73fc2cb08c35c82890b2ef5c9757.tar.xz
hwmon: (corsair-cpro) Fix fall-through warnings for Clang
In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning by explicitly adding a break statement instead of letting the code fall through to the next case. Link: https://github.com/KSPP/linux/issues/115 Acked-by: Guenter Roeck <linux@roeck-us.net> Marius Zachmann <mail@mariuszachmann.de> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/corsair-cpro.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/corsair-cpro.c b/drivers/hwmon/corsair-cpro.c
index 591929ec217a..fa6aa4fc8b52 100644
--- a/drivers/hwmon/corsair-cpro.c
+++ b/drivers/hwmon/corsair-cpro.c
@@ -310,6 +310,7 @@ static int ccp_write(struct device *dev, enum hwmon_sensor_types type,
default:
break;
}
+ break;
default:
break;
}