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-v4.0-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull hwmon fix from Guenter Roeck:
"Add missing return value check to ads7828 driver"

* tag 'hwmon-for-linus-v4.0-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
hwmon: (ads7828) Check return value of devm_regmap_init_i2c

+3
+3
drivers/hwmon/ads7828.c
··· 147 147 &ads2830_regmap_config); 148 148 } 149 149 150 + if (IS_ERR(data->regmap)) 151 + return PTR_ERR(data->regmap); 152 + 150 153 data->cmd_byte = ext_vref ? ADS7828_CMD_PD1 : ADS7828_CMD_PD3; 151 154 if (!diff_input) 152 155 data->cmd_byte |= ADS7828_CMD_SD_SE;