Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ccffe776 authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by Guenter Roeck
Browse files

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: default avatarLuis de Bethencourt <luisbg@kernel.org>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 0c4c5860
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
		}