aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hwmon/amc6821.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/amc6821.c b/drivers/hwmon/amc6821.c
index 4fe49d2bfe1d..fcb18535fd56 100644
--- a/drivers/hwmon/amc6821.c
+++ b/drivers/hwmon/amc6821.c
@@ -364,7 +364,7 @@ static ssize_t set_pwm1_enable(
364 if (config < 0) { 364 if (config < 0) {
365 dev_err(&client->dev, 365 dev_err(&client->dev,
366 "Error reading configuration register, aborting.\n"); 366 "Error reading configuration register, aborting.\n");
367 return -EIO; 367 return config;
368 } 368 }
369 369
370 switch (val) { 370 switch (val) {
@@ -665,7 +665,7 @@ static ssize_t set_fan1_div(
665 if (config < 0) { 665 if (config < 0) {
666 dev_err(&client->dev, 666 dev_err(&client->dev,
667 "Error reading configuration register, aborting.\n"); 667 "Error reading configuration register, aborting.\n");
668 return -EIO; 668 return config;
669 } 669 }
670 mutex_lock(&data->update_lock); 670 mutex_lock(&data->update_lock);
671 switch (val) { 671 switch (val) {