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

Commit 3499e5b2 authored by Sachin Kamat's avatar Sachin Kamat Committed by Guenter Roeck
Browse files

hwmon: (amc6821) Fix return value



Propagate return value obtained from i2c_smbus_read_byte_data()
instead of hardcoding.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Cc: T. Mertelj <tomaz.mertelj@guest.arnes.si>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 12ca0b56
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -364,7 +364,7 @@ static ssize_t set_pwm1_enable(
	if (config < 0) {
			dev_err(&client->dev,
			"Error reading configuration register, aborting.\n");
			return -EIO;
			return config;
	}

	switch (val) {
@@ -665,7 +665,7 @@ static ssize_t set_fan1_div(
	if (config < 0) {
		dev_err(&client->dev,
			"Error reading configuration register, aborting.\n");
		return -EIO;
		return config;
	}
	mutex_lock(&data->update_lock);
	switch (val) {