Commit f86c51b6 authored by Pawe? Chmiel's avatar Pawe? Chmiel Committed by Mauro Carvalho Chehab

media: si470x-i2c: Use managed resource helpers

Simplify cleanup of failures by using managed resource helpers
Signed-off-by: default avatarPawe? Chmiel <pawel.mikolaj.chmiel@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 95f9db59
...@@ -350,7 +350,7 @@ static int si470x_i2c_probe(struct i2c_client *client, ...@@ -350,7 +350,7 @@ static int si470x_i2c_probe(struct i2c_client *client,
unsigned char version_warning = 0; unsigned char version_warning = 0;
/* private data allocation and initialization */ /* private data allocation and initialization */
radio = kzalloc(sizeof(struct si470x_device), GFP_KERNEL); radio = devm_kzalloc(&client->dev, sizeof(*radio), GFP_KERNEL);
if (!radio) { if (!radio) {
retval = -ENOMEM; retval = -ENOMEM;
goto err_initial; goto err_initial;
...@@ -370,7 +370,7 @@ static int si470x_i2c_probe(struct i2c_client *client, ...@@ -370,7 +370,7 @@ static int si470x_i2c_probe(struct i2c_client *client,
retval = v4l2_device_register(&client->dev, &radio->v4l2_dev); retval = v4l2_device_register(&client->dev, &radio->v4l2_dev);
if (retval < 0) { if (retval < 0) {
dev_err(&client->dev, "couldn't register v4l2_device\n"); dev_err(&client->dev, "couldn't register v4l2_device\n");
goto err_radio; goto err_initial;
} }
v4l2_ctrl_handler_init(&radio->hdl, 2); v4l2_ctrl_handler_init(&radio->hdl, 2);
...@@ -396,14 +396,14 @@ static int si470x_i2c_probe(struct i2c_client *client, ...@@ -396,14 +396,14 @@ static int si470x_i2c_probe(struct i2c_client *client,
radio->registers[POWERCFG] = POWERCFG_ENABLE; radio->registers[POWERCFG] = POWERCFG_ENABLE;
if (si470x_set_register(radio, POWERCFG) < 0) { if (si470x_set_register(radio, POWERCFG) < 0) {
retval = -EIO; retval = -EIO;
goto err_ctrl; goto err_all;
} }
msleep(110); msleep(110);
/* get device and chip versions */ /* get device and chip versions */
if (si470x_get_all_registers(radio) < 0) { if (si470x_get_all_registers(radio) < 0) {
retval = -EIO; retval = -EIO;
goto err_ctrl; goto err_all;
} }
dev_info(&client->dev, "DeviceID=0x%4.4hx ChipID=0x%4.4hx\n", dev_info(&client->dev, "DeviceID=0x%4.4hx ChipID=0x%4.4hx\n",
radio->registers[DEVICEID], radio->registers[SI_CHIPID]); radio->registers[DEVICEID], radio->registers[SI_CHIPID]);
...@@ -430,10 +430,10 @@ static int si470x_i2c_probe(struct i2c_client *client, ...@@ -430,10 +430,10 @@ static int si470x_i2c_probe(struct i2c_client *client,
/* rds buffer allocation */ /* rds buffer allocation */
radio->buf_size = rds_buf * 3; radio->buf_size = rds_buf * 3;
radio->buffer = kmalloc(radio->buf_size, GFP_KERNEL); radio->buffer = devm_kmalloc(&client->dev, radio->buf_size, GFP_KERNEL);
if (!radio->buffer) { if (!radio->buffer) {
retval = -EIO; retval = -EIO;
goto err_ctrl; goto err_all;
} }
/* rds buffer configuration */ /* rds buffer configuration */
...@@ -441,12 +441,13 @@ static int si470x_i2c_probe(struct i2c_client *client, ...@@ -441,12 +441,13 @@ static int si470x_i2c_probe(struct i2c_client *client,
radio->rd_index = 0; radio->rd_index = 0;
init_waitqueue_head(&radio->read_queue); init_waitqueue_head(&radio->read_queue);
retval = request_threaded_irq(client->irq, NULL, si470x_i2c_interrupt, retval = devm_request_threaded_irq(&client->dev, client->irq, NULL,
IRQF_TRIGGER_FALLING | IRQF_ONESHOT, DRIVER_NAME, si470x_i2c_interrupt,
radio); IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
DRIVER_NAME, radio);
if (retval) { if (retval) {
dev_err(&client->dev, "Failed to register interrupt\n"); dev_err(&client->dev, "Failed to register interrupt\n");
goto err_rds; goto err_all;
} }
/* register video device */ /* register video device */
...@@ -460,15 +461,9 @@ static int si470x_i2c_probe(struct i2c_client *client, ...@@ -460,15 +461,9 @@ static int si470x_i2c_probe(struct i2c_client *client,
return 0; return 0;
err_all: err_all:
free_irq(client->irq, radio);
err_rds:
kfree(radio->buffer);
err_ctrl:
v4l2_ctrl_handler_free(&radio->hdl); v4l2_ctrl_handler_free(&radio->hdl);
err_dev: err_dev:
v4l2_device_unregister(&radio->v4l2_dev); v4l2_device_unregister(&radio->v4l2_dev);
err_radio:
kfree(radio);
err_initial: err_initial:
return retval; return retval;
} }
...@@ -481,9 +476,7 @@ static int si470x_i2c_remove(struct i2c_client *client) ...@@ -481,9 +476,7 @@ static int si470x_i2c_remove(struct i2c_client *client)
{ {
struct si470x_device *radio = i2c_get_clientdata(client); struct si470x_device *radio = i2c_get_clientdata(client);
free_irq(client->irq, radio);
video_unregister_device(&radio->videodev); video_unregister_device(&radio->videodev);
kfree(radio);
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