Commit d3911f16 authored by Nikita Travkin's avatar Nikita Travkin Committed by Sebastian Reichel

power: supply: rt5033: Bring back i2c_set_clientdata

Commit 3a93da23 ("power: supply: rt5033: Use devm_power_supply_register() helper")
reworked the driver to use devm. While at it, the i2c_set_clientdata
was dropped along with the remove callback. Unfortunately other parts
of the driver also rely on i2c clientdata so this causes kernel oops.

Bring the call back to fix the driver.

Fixes: 3a93da23 ("power: supply: rt5033: Use devm_power_supply_register() helper")
Tested-by: default avatarRaymond Hackley <raymondhackley@protonmail.com>
Signed-off-by: default avatarNikita Travkin <nikita@trvn.ru>
Link: https://lore.kernel.org/r/20240605-rt5033-null-clientdata-v1-1-558d710eeb4d@trvn.ruSigned-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent 1613e604
......@@ -159,6 +159,7 @@ static int rt5033_battery_probe(struct i2c_client *client)
return -EINVAL;
}
i2c_set_clientdata(client, battery);
psy_cfg.of_node = client->dev.of_node;
psy_cfg.drv_data = battery;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment