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>
This commit is contained in:
Luis de Bethencourt 2018-01-17 18:24:48 +00:00 committed by Guenter Roeck
parent 0c4c5860e9
commit ccffe77670
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ static int lm75_read(struct device *dev, enum hwmon_sensor_types type,
switch (attr) {
case hwmon_chip_update_interval:
*val = data->sample_time;
break;;
break;
default:
return -EINVAL;
}