Commit 6f9fab69 authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: eeti_ts - switch to using managed resources

Using devm_* APIs simpifies error handling and device teardown.
Reviewed-by: default avatarDaniel Mack <daniel@zonque.org>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 42e02a6a
...@@ -157,13 +157,14 @@ static void eeti_ts_close(struct input_dev *dev) ...@@ -157,13 +157,14 @@ static void eeti_ts_close(struct input_dev *dev)
} }
static int eeti_ts_probe(struct i2c_client *client, static int eeti_ts_probe(struct i2c_client *client,
const struct i2c_device_id *idp) const struct i2c_device_id *idp)
{ {
struct eeti_ts_platform_data *pdata = dev_get_platdata(&client->dev); struct device *dev = &client->dev;
struct eeti_ts_platform_data *pdata = dev_get_platdata(dev);
struct eeti_ts *eeti; struct eeti_ts *eeti;
struct input_dev *input; struct input_dev *input;
unsigned int irq_flags; unsigned int irq_flags;
int err = -ENOMEM; int error;
/* /*
* In contrast to what's described in the datasheet, there seems * In contrast to what's described in the datasheet, there seems
...@@ -172,18 +173,18 @@ static int eeti_ts_probe(struct i2c_client *client, ...@@ -172,18 +173,18 @@ static int eeti_ts_probe(struct i2c_client *client,
* for interrupts to occur. * for interrupts to occur.
*/ */
eeti = kzalloc(sizeof(*eeti), GFP_KERNEL); eeti = devm_kzalloc(dev, sizeof(*eeti), GFP_KERNEL);
if (!eeti) { if (!eeti) {
dev_err(&client->dev, "failed to allocate driver data\n"); dev_err(dev, "failed to allocate driver data\n");
return -ENOMEM; return -ENOMEM;
} }
mutex_init(&eeti->mutex); mutex_init(&eeti->mutex);
input = input_allocate_device(); input = devm_input_allocate_device(dev);
if (!input) { if (!input) {
dev_err(&client->dev, "Failed to allocate input device.\n"); dev_err(dev, "Failed to allocate input device.\n");
goto err1; return -ENOMEM;
} }
input_set_capability(input, EV_KEY, BTN_TOUCH); input_set_capability(input, EV_KEY, BTN_TOUCH);
...@@ -194,7 +195,6 @@ static int eeti_ts_probe(struct i2c_client *client, ...@@ -194,7 +195,6 @@ static int eeti_ts_probe(struct i2c_client *client,
input->name = client->name; input->name = client->name;
input->id.bustype = BUS_I2C; input->id.bustype = BUS_I2C;
input->dev.parent = &client->dev;
input->open = eeti_ts_open; input->open = eeti_ts_open;
input->close = eeti_ts_close; input->close = eeti_ts_close;
...@@ -203,9 +203,10 @@ static int eeti_ts_probe(struct i2c_client *client, ...@@ -203,9 +203,10 @@ static int eeti_ts_probe(struct i2c_client *client,
eeti->irq_gpio = pdata->irq_gpio; eeti->irq_gpio = pdata->irq_gpio;
eeti->irq = gpio_to_irq(pdata->irq_gpio); eeti->irq = gpio_to_irq(pdata->irq_gpio);
err = gpio_request_one(pdata->irq_gpio, GPIOF_IN, client->name); error = devm_gpio_request_one(dev, pdata->irq_gpio, GPIOF_IN,
if (err < 0) client->name);
goto err1; if (error)
return error;
eeti->irq_active_high = pdata->irq_active_high; eeti->irq_active_high = pdata->irq_active_high;
...@@ -216,15 +217,16 @@ static int eeti_ts_probe(struct i2c_client *client, ...@@ -216,15 +217,16 @@ static int eeti_ts_probe(struct i2c_client *client,
i2c_set_clientdata(client, eeti); i2c_set_clientdata(client, eeti);
input_set_drvdata(input, eeti); input_set_drvdata(input, eeti);
err = input_register_device(input); error = input_register_device(input);
if (err) if (error)
goto err2; return error;
err = request_irq(eeti->irq, eeti_ts_isr, irq_flags, error = devm_request_irq(dev, eeti->irq, eeti_ts_isr, irq_flags,
client->name, eeti); client->name, eeti);
if (err) { if (error) {
dev_err(&client->dev, "Unable to request touchscreen IRQ.\n"); dev_err(dev, "Unable to request touchscreen IRQ: %d\n",
goto err3; error);
return error;
} }
/* /*
...@@ -233,33 +235,6 @@ static int eeti_ts_probe(struct i2c_client *client, ...@@ -233,33 +235,6 @@ static int eeti_ts_probe(struct i2c_client *client,
*/ */
eeti_ts_stop(eeti); eeti_ts_stop(eeti);
return 0;
err3:
input_unregister_device(input);
input = NULL; /* so we dont try to free it below */
err2:
gpio_free(pdata->irq_gpio);
err1:
input_free_device(input);
kfree(eeti);
return err;
}
static int eeti_ts_remove(struct i2c_client *client)
{
struct eeti_ts *eeti = i2c_get_clientdata(client);
free_irq(eeti->irq, eeti);
/*
* eeti_ts_stop() leaves IRQ disabled. We need to re-enable it
* so that device still works if we reload the driver.
*/
enable_irq(eeti->irq);
input_unregister_device(eeti->input);
kfree(eeti);
return 0; return 0;
} }
...@@ -315,7 +290,6 @@ static struct i2c_driver eeti_ts_driver = { ...@@ -315,7 +290,6 @@ static struct i2c_driver eeti_ts_driver = {
.pm = &eeti_ts_pm, .pm = &eeti_ts_pm,
}, },
.probe = eeti_ts_probe, .probe = eeti_ts_probe,
.remove = eeti_ts_remove,
.id_table = eeti_ts_id, .id_table = eeti_ts_id,
}; };
......
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