Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'hwmon-for-linus-v3.18-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull a hwmon fix from Guenter Roeck:
"Fix hwmon registration problem in g762 driver"

* tag 'hwmon-for-linus-v3.18-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
hwmon: (g762) fix call to devm_hwmon_device_register_with_groups()

+2 -4
+2 -4
drivers/hwmon/g762.c
··· 1084 1084 if (ret) 1085 1085 goto clock_dis; 1086 1086 1087 - data->hwmon_dev = devm_hwmon_device_register_with_groups(dev, 1088 - client->name, 1089 - data, 1090 - g762_groups); 1087 + data->hwmon_dev = hwmon_device_register_with_groups(dev, client->name, 1088 + data, g762_groups); 1091 1089 if (IS_ERR(data->hwmon_dev)) { 1092 1090 ret = PTR_ERR(data->hwmon_dev); 1093 1091 goto clock_dis;