hwmon fixes for 3.5-rc4
Two minor fixes in emc2103 and applesmc drivers. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJP4orkAAoJEMsfJm/On5mBIa4P/Awha20ciGg44zONpGD7xC5/ G2xbmR4qRey0WD1Ot4lMBUfM6NQT3yeZELfykq5KWv9O83VcwaKp+eRUeacE2f9K Jzhe0zz6mJvb8uqQteoCJsPJg435KOeYKUaqlQzAP2warTne9fAY5ugZ3eEIEfs/ 1vT0BreVC5PSvf82qP0+xHHeGOGMI3ti7iqm9IN7pnzZDYrVJgjCMDXra000eGnW wX0ZPWrT5+/7eFTDEPu6PtmY8jRcWlc9AGeE6DMsvKYp7k0yyAAiN8ebNrQtkW5J nSj9QAJG4hej59aiS/QJD2QQWHNgrBstHcW4ZxXYp/IhayGPq2K8YF30wJl+X9bx /9e6K5RNvOUxTh9QjOodAN0EhEO4rsJTb6VsjZ/1L6d9aPHJD22ZFQZKYzDrApPw b0DwxLKJwehm1pqT0C/ptbsx0vVUWdwc9xwBo5co8lmIRasHR9J92iEKndNGTicl eGMXOgE3rjEgelwXvLDaIvple8PIRDj6Hc6TmKJlaxvAfBms4yMBHvASEuOujpD2 mT8lhrrArf4mDeEl2ks2b+z5eEje9nuSgP5V1XNmxTYmh4eF96XiIWg9Gov7J1zr 7JmgrxJv2nr7n/rSxcmA+POlNhGTRsMb52l5em8lbKlcd7A80V0k23xQDuTxWlrx uoefguLWBt82fjVqNi/S =kDRE -----END PGP SIGNATURE----- Merge tag 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging Pull hwmon fixes from Guenter Roeck: "Two minor fixes in emc2103 and applesmc drivers." * tag 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging: hwmon: (emc2103) Fix use of an uninitilized variable in error case hwmon: (applesmc) Limit key length in warning messages
This commit is contained in:
commit
7b8377862b
|
@ -215,7 +215,7 @@ static int read_smc(u8 cmd, const char *key, u8 *buffer, u8 len)
|
|||
int i;
|
||||
|
||||
if (send_command(cmd) || send_argument(key)) {
|
||||
pr_warn("%s: read arg fail\n", key);
|
||||
pr_warn("%.4s: read arg fail\n", key);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
|
@ -223,7 +223,7 @@ static int read_smc(u8 cmd, const char *key, u8 *buffer, u8 len)
|
|||
|
||||
for (i = 0; i < len; i++) {
|
||||
if (__wait_status(0x05)) {
|
||||
pr_warn("%s: read data fail\n", key);
|
||||
pr_warn("%.4s: read data fail\n", key);
|
||||
return -EIO;
|
||||
}
|
||||
buffer[i] = inb(APPLESMC_DATA_PORT);
|
||||
|
|
|
@ -451,11 +451,15 @@ static ssize_t set_pwm_enable(struct device *dev, struct device_attribute *da,
|
|||
data->fan_rpm_control = true;
|
||||
break;
|
||||
default:
|
||||
mutex_unlock(&data->update_lock);
|
||||
return -EINVAL;
|
||||
count = -EINVAL;
|
||||
goto err;
|
||||
}
|
||||
|
||||
read_u8_from_i2c(client, REG_FAN_CONF1, &conf_reg);
|
||||
result = read_u8_from_i2c(client, REG_FAN_CONF1, &conf_reg);
|
||||
if (result) {
|
||||
count = result;
|
||||
goto err;
|
||||
}
|
||||
|
||||
if (data->fan_rpm_control)
|
||||
conf_reg |= 0x80;
|
||||
|
@ -463,7 +467,7 @@ static ssize_t set_pwm_enable(struct device *dev, struct device_attribute *da,
|
|||
conf_reg &= ~0x80;
|
||||
|
||||
i2c_smbus_write_byte_data(client, REG_FAN_CONF1, conf_reg);
|
||||
|
||||
err:
|
||||
mutex_unlock(&data->update_lock);
|
||||
return count;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue