Commit b09638a4 authored by Jingoo Han's avatar Jingoo Han Committed by Linus Walleij

gpio: max732x: use devm_kzalloc()

Use devm_kzalloc() to make cleanup paths simpler.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 4cb06cd5
...@@ -589,7 +589,8 @@ static int max732x_probe(struct i2c_client *client, ...@@ -589,7 +589,8 @@ static int max732x_probe(struct i2c_client *client,
return -EINVAL; return -EINVAL;
} }
chip = kzalloc(sizeof(struct max732x_chip), GFP_KERNEL); chip = devm_kzalloc(&client->dev, sizeof(struct max732x_chip),
GFP_KERNEL);
if (chip == NULL) if (chip == NULL)
return -ENOMEM; return -ENOMEM;
chip->client = client; chip->client = client;
...@@ -647,7 +648,6 @@ static int max732x_probe(struct i2c_client *client, ...@@ -647,7 +648,6 @@ static int max732x_probe(struct i2c_client *client,
out_failed: out_failed:
max732x_irq_teardown(chip); max732x_irq_teardown(chip);
kfree(chip);
return ret; return ret;
} }
...@@ -680,7 +680,6 @@ static int max732x_remove(struct i2c_client *client) ...@@ -680,7 +680,6 @@ static int max732x_remove(struct i2c_client *client)
if (chip->client_dummy) if (chip->client_dummy)
i2c_unregister_device(chip->client_dummy); i2c_unregister_device(chip->client_dummy);
kfree(chip);
return 0; return 0;
} }
......
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