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 'for-v6.8-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply

Pull power supply fixes from Sebastian Reichel:

- Kconfig dependency fix

- bq27xxx-i2c: do not free non-existing IRQ

* tag 'for-v6.8-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply:
power: supply: bq27xxx-i2c: Do not free non existing IRQ
power: supply: mm8013: select REGMAP_I2C

+4 -1
+1
drivers/power/supply/Kconfig
··· 978 978 config FUEL_GAUGE_MM8013 979 979 tristate "Mitsumi MM8013 fuel gauge driver" 980 980 depends on I2C 981 + select REGMAP_I2C 981 982 help 982 983 Say Y here to enable the Mitsumi MM8013 fuel gauge driver. 983 984 It enables the monitoring of many battery parameters, including
+3 -1
drivers/power/supply/bq27xxx_battery_i2c.c
··· 209 209 { 210 210 struct bq27xxx_device_info *di = i2c_get_clientdata(client); 211 211 212 - free_irq(client->irq, di); 212 + if (client->irq) 213 + free_irq(client->irq, di); 214 + 213 215 bq27xxx_battery_teardown(di); 214 216 215 217 mutex_lock(&battery_mutex);