mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 09:44:18 +08:00
power: supply: rt5033_battery: Fix error code in rt5033_battery_probe()
In the function rt5033_battery_probe(), it should return -ENOMEM instead of -EINVAL when call function devm_kzalloc() failed. Signed-off-by: Peng Fan <fanpeng@loongson.cn> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
2f38dc4d91
commit
466bf93153
@ -125,7 +125,7 @@ static int rt5033_battery_probe(struct i2c_client *client,
|
||||
|
||||
battery = devm_kzalloc(&client->dev, sizeof(*battery), GFP_KERNEL);
|
||||
if (!battery)
|
||||
return -EINVAL;
|
||||
return -ENOMEM;
|
||||
|
||||
battery->client = client;
|
||||
battery->regmap = devm_regmap_init_i2c(client,
|
||||
|
Loading…
Reference in New Issue
Block a user