Commit 6b55b451 authored by Lad, Prabhakar's avatar Lad, Prabhakar Committed by Mauro Carvalho Chehab

[media] media: davinci: vpbe_display: convert to devm* api

Replace existing resource handling in the driver with managed
device resource, this ensures more consistent error values and
simplifies error paths.
Signed-off-by: default avatarLad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 418f7d60
...@@ -1743,11 +1743,10 @@ static int vpbe_display_probe(struct platform_device *pdev) ...@@ -1743,11 +1743,10 @@ static int vpbe_display_probe(struct platform_device *pdev)
printk(KERN_DEBUG "vpbe_display_probe\n"); printk(KERN_DEBUG "vpbe_display_probe\n");
/* Allocate memory for vpbe_display */ /* Allocate memory for vpbe_display */
disp_dev = kzalloc(sizeof(struct vpbe_display), GFP_KERNEL); disp_dev = devm_kzalloc(&pdev->dev, sizeof(struct vpbe_display),
if (!disp_dev) { GFP_KERNEL);
printk(KERN_ERR "ran out of memory\n"); if (!disp_dev)
return -ENOMEM; return -ENOMEM;
}
spin_lock_init(&disp_dev->dma_queue_lock); spin_lock_init(&disp_dev->dma_queue_lock);
/* /*
...@@ -1786,26 +1785,24 @@ static int vpbe_display_probe(struct platform_device *pdev) ...@@ -1786,26 +1785,24 @@ static int vpbe_display_probe(struct platform_device *pdev)
} }
irq = res->start; irq = res->start;
if (request_irq(irq, venc_isr, IRQF_DISABLED, VPBE_DISPLAY_DRIVER, err = devm_request_irq(&pdev->dev, irq, venc_isr, IRQF_DISABLED,
disp_dev)) { VPBE_DISPLAY_DRIVER, disp_dev);
if (err) {
v4l2_err(&disp_dev->vpbe_dev->v4l2_dev, v4l2_err(&disp_dev->vpbe_dev->v4l2_dev,
"Unable to request interrupt\n"); "Unable to request interrupt\n");
err = -ENODEV;
goto probe_out; goto probe_out;
} }
for (i = 0; i < VPBE_DISPLAY_MAX_DEVICES; i++) { for (i = 0; i < VPBE_DISPLAY_MAX_DEVICES; i++) {
if (register_device(disp_dev->dev[i], disp_dev, pdev)) { if (register_device(disp_dev->dev[i], disp_dev, pdev)) {
err = -ENODEV; err = -ENODEV;
goto probe_out_irq; goto probe_out;
} }
} }
printk(KERN_DEBUG "Successfully completed the probing of vpbe v4l2 device\n"); printk(KERN_DEBUG "Successfully completed the probing of vpbe v4l2 device\n");
return 0; return 0;
probe_out_irq:
free_irq(res->start, disp_dev);
probe_out: probe_out:
for (k = 0; k < VPBE_DISPLAY_MAX_DEVICES; k++) { for (k = 0; k < VPBE_DISPLAY_MAX_DEVICES; k++) {
/* Get the pointer to the layer object */ /* Get the pointer to the layer object */
...@@ -1817,7 +1814,6 @@ static int vpbe_display_probe(struct platform_device *pdev) ...@@ -1817,7 +1814,6 @@ static int vpbe_display_probe(struct platform_device *pdev)
kfree(disp_dev->dev[k]); kfree(disp_dev->dev[k]);
} }
} }
kfree(disp_dev);
return err; return err;
} }
...@@ -1830,15 +1826,10 @@ static int vpbe_display_remove(struct platform_device *pdev) ...@@ -1830,15 +1826,10 @@ static int vpbe_display_remove(struct platform_device *pdev)
struct vpbe_layer *vpbe_display_layer; struct vpbe_layer *vpbe_display_layer;
struct vpbe_display *disp_dev = platform_get_drvdata(pdev); struct vpbe_display *disp_dev = platform_get_drvdata(pdev);
struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev; struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
struct resource *res;
int i; int i;
v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "vpbe_display_remove\n"); v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "vpbe_display_remove\n");
/* unregister irq */
res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
free_irq(res->start, disp_dev);
/* deinitialize the vpbe display controller */ /* deinitialize the vpbe display controller */
if (NULL != vpbe_dev->ops.deinitialize) if (NULL != vpbe_dev->ops.deinitialize)
vpbe_dev->ops.deinitialize(&pdev->dev, vpbe_dev); vpbe_dev->ops.deinitialize(&pdev->dev, vpbe_dev);
......
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