Commit 254af0a3 authored by Pramod Gurav's avatar Pramod Gurav Committed by Dmitry Torokhov

Input: mpr121 - switch to using managed resources

This change switches the driver to use devm_* managed resources APIs to
request the resources in probe to simplify probe error path and module
unloading and does away with remove function.
Signed-off-by: default avatarPramod Gurav <pramod.gurav@smartplayin.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 68da1664
...@@ -214,13 +214,14 @@ static int mpr_touchkey_probe(struct i2c_client *client, ...@@ -214,13 +214,14 @@ static int mpr_touchkey_probe(struct i2c_client *client,
return -EINVAL; return -EINVAL;
} }
mpr121 = kzalloc(sizeof(struct mpr121_touchkey), GFP_KERNEL); mpr121 = devm_kzalloc(&client->dev, sizeof(*mpr121),
input_dev = input_allocate_device(); GFP_KERNEL);
if (!mpr121 || !input_dev) { if (!mpr121)
dev_err(&client->dev, "Failed to allocate memory\n"); return -ENOMEM;
error = -ENOMEM;
goto err_free_mem; input_dev = devm_input_allocate_device(&client->dev);
} if (!input_dev)
return -ENOMEM;
mpr121->client = client; mpr121->client = client;
mpr121->input_dev = input_dev; mpr121->input_dev = input_dev;
...@@ -243,43 +244,25 @@ static int mpr_touchkey_probe(struct i2c_client *client, ...@@ -243,43 +244,25 @@ static int mpr_touchkey_probe(struct i2c_client *client,
error = mpr121_phys_init(pdata, mpr121, client); error = mpr121_phys_init(pdata, mpr121, client);
if (error) { if (error) {
dev_err(&client->dev, "Failed to init register\n"); dev_err(&client->dev, "Failed to init register\n");
goto err_free_mem; return error;
} }
error = request_threaded_irq(client->irq, NULL, error = devm_request_threaded_irq(&client->dev, client->irq, NULL,
mpr_touchkey_interrupt, mpr_touchkey_interrupt,
IRQF_TRIGGER_FALLING | IRQF_ONESHOT, IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
client->dev.driver->name, mpr121); client->dev.driver->name, mpr121);
if (error) { if (error) {
dev_err(&client->dev, "Failed to register interrupt\n"); dev_err(&client->dev, "Failed to register interrupt\n");
goto err_free_mem; return error;
} }
error = input_register_device(input_dev); error = input_register_device(input_dev);
if (error) if (error)
goto err_free_irq; return error;
i2c_set_clientdata(client, mpr121); i2c_set_clientdata(client, mpr121);
device_init_wakeup(&client->dev, pdata->wakeup); device_init_wakeup(&client->dev, pdata->wakeup);
return 0;
err_free_irq:
free_irq(client->irq, mpr121);
err_free_mem:
input_free_device(input_dev);
kfree(mpr121);
return error;
}
static int mpr_touchkey_remove(struct i2c_client *client)
{
struct mpr121_touchkey *mpr121 = i2c_get_clientdata(client);
free_irq(client->irq, mpr121);
input_unregister_device(mpr121->input_dev);
kfree(mpr121);
return 0; return 0;
} }
...@@ -327,7 +310,6 @@ static struct i2c_driver mpr_touchkey_driver = { ...@@ -327,7 +310,6 @@ static struct i2c_driver mpr_touchkey_driver = {
}, },
.id_table = mpr121_id, .id_table = mpr121_id,
.probe = mpr_touchkey_probe, .probe = mpr_touchkey_probe,
.remove = mpr_touchkey_remove,
}; };
module_i2c_driver(mpr_touchkey_driver); module_i2c_driver(mpr_touchkey_driver);
......
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