power: supply: bq27xxx: Fix kernel crash on IRQ handler register error
[ Upstream commitcdf10ffe8f] When registering the IRQ handler fails, do not just return the error code, this will free the devm_kzalloc()-ed data struct while leaving the queued work queued and the registered power_supply registered with both of them now pointing to free-ed memory, resulting in various kernel crashes soon afterwards. Instead properly tear-down things on IRQ handler register errors. Fixes:703df6c097("power: bq27xxx_battery: Reorganize I2C into a module") Cc: Andrew F. Davis <afd@ti.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
dbdf0f2207
commit
9c9c33ea4c
1 changed files with 2 additions and 1 deletions
|
|
@ -187,7 +187,8 @@ static int bq27xxx_battery_i2c_probe(struct i2c_client *client,
|
|||
dev_err(&client->dev,
|
||||
"Unable to register IRQ %d error %d\n",
|
||||
client->irq, ret);
|
||||
return ret;
|
||||
bq27xxx_battery_teardown(di);
|
||||
goto err_failed;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue