aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis de Bethencourt <luisbg@kernel.org>2018-01-17 13:24:48 -0500
committerGuenter Roeck <linux@roeck-us.net>2018-01-17 17:51:12 -0500
commitccffe776700343fbd127c8624d9962ebea1bfbb7 (patch)
treed257ea8559dcfb3305877ee50f8a5249eb10a3b9
parent0c4c5860e9983eb3da7a3d73ca987643c3ed034b (diff)
hwmon: (lm75) Fix trailing semicolon
The trailing semicolon is an empty statement that does no operation. Removing it since it doesn't do anything. Signed-off-by: Luis de Bethencourt <luisbg@kernel.org> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
-rw-r--r--drivers/hwmon/lm75.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c
index 005ffb5ffa92..49f4b33a5685 100644
--- a/drivers/hwmon/lm75.c
+++ b/drivers/hwmon/lm75.c
@@ -100,7 +100,7 @@ static int lm75_read(struct device *dev, enum hwmon_sensor_types type,
100 switch (attr) { 100 switch (attr) {
101 case hwmon_chip_update_interval: 101 case hwmon_chip_update_interval:
102 *val = data->sample_time; 102 *val = data->sample_time;
103 break;; 103 break;
104 default: 104 default:
105 return -EINVAL; 105 return -EINVAL;
106 } 106 }