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-v5.9-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply

Pull power supply fix from Sebastian Reichel:
"Just a single change to revert enablement of packet error checking for
battery data on Chromebooks, since some of their embedded controllers
do not handle it correctly"

* tag 'for-v5.9-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply:
power: supply: sbs-battery: chromebook workaround for PEC

+6
+6
drivers/power/supply/sbs-battery.c
··· 280 280 else 281 281 client->flags &= ~I2C_CLIENT_PEC; 282 282 283 + if (of_device_is_compatible(client->dev.parent->of_node, "google,cros-ec-i2c-tunnel") 284 + && client->flags & I2C_CLIENT_PEC) { 285 + dev_info(&client->dev, "Disabling PEC because of broken Cros-EC implementation\n"); 286 + client->flags &= ~I2C_CLIENT_PEC; 287 + } 288 + 283 289 dev_dbg(&client->dev, "PEC: %s\n", (client->flags & I2C_CLIENT_PEC) ? 284 290 "enabled" : "disabled"); 285 291