media: Remove dev_err() usage after platform_get_irq()
We don't need dev_err() messages when platform_get_irq() fails now that platform_get_irq() prints an error message itself when something goes wrong. Let's remove these prints with a simple semantic patch. // <smpl> @@ expression ret; struct platform_device *E; @@ ret = ( platform_get_irq(E, ...) | platform_get_irq_byname(E, ...) ); if ( \( ret < 0 \| ret <= 0 \) ) { ( -if (ret != -EPROBE_DEFER) -{ ... -dev_err(...); -... } | ... -dev_err(...); ) ... } // </smpl> While we're here, remove braces on if statements that only have one statement (manually). Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Stephen Boyd <swboyd@chromium.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
25a3d6bac6
commit
97299a3035
@ -2540,7 +2540,6 @@ static int vpfe_probe(struct platform_device *pdev)
|
||||
|
||||
ret = platform_get_irq(pdev, 0);
|
||||
if (ret <= 0) {
|
||||
dev_err(&pdev->dev, "No IRQ resource\n");
|
||||
ret = -ENODEV;
|
||||
goto probe_out_cleanup;
|
||||
}
|
||||
|
@ -160,11 +160,8 @@ static int atmel_isc_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0) {
|
||||
ret = irq;
|
||||
dev_err(dev, "failed to get irq: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
if (irq < 0)
|
||||
return irq;
|
||||
|
||||
ret = devm_request_irq(dev, irq, isc_interrupt, 0,
|
||||
ATMEL_ISC_NAME, isc);
|
||||
|
@ -803,10 +803,8 @@ static int s5pcsis_probe(struct platform_device *pdev)
|
||||
return PTR_ERR(state->regs);
|
||||
|
||||
state->irq = platform_get_irq(pdev, 0);
|
||||
if (state->irq < 0) {
|
||||
dev_err(dev, "Failed to get irq\n");
|
||||
if (state->irq < 0)
|
||||
return state->irq;
|
||||
}
|
||||
|
||||
for (i = 0; i < CSIS_NUM_SUPPLIES; i++)
|
||||
state->supplies[i].supply = csis_supply_name[i];
|
||||
|
@ -1661,10 +1661,8 @@ static int pxp_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0) {
|
||||
dev_err(&pdev->dev, "Failed to get irq resource: %d\n", irq);
|
||||
if (irq < 0)
|
||||
return irq;
|
||||
}
|
||||
|
||||
ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, pxp_irq_handler,
|
||||
IRQF_ONESHOT, dev_name(&pdev->dev), dev);
|
||||
|
@ -2387,7 +2387,6 @@ static int isp_probe(struct platform_device *pdev)
|
||||
/* Interrupt */
|
||||
ret = platform_get_irq(pdev, 0);
|
||||
if (ret <= 0) {
|
||||
dev_err(isp->dev, "No IRQ resource\n");
|
||||
ret = -ENODEV;
|
||||
goto error_iommu;
|
||||
}
|
||||
|
@ -1659,10 +1659,8 @@ static int ceu_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
ret = platform_get_irq(pdev, 0);
|
||||
if (ret < 0) {
|
||||
dev_err(dev, "Failed to get irq: %d\n", ret);
|
||||
if (ret < 0)
|
||||
goto error_free_ceudev;
|
||||
}
|
||||
irq = ret;
|
||||
|
||||
ret = devm_request_irq(dev, irq, ceu_irq,
|
||||
|
@ -831,7 +831,6 @@ static int rga_probe(struct platform_device *pdev)
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0) {
|
||||
dev_err(rga->dev, "failed to get irq\n");
|
||||
ret = irq;
|
||||
goto err_put_clk;
|
||||
}
|
||||
|
@ -380,10 +380,8 @@ static int camif_request_irqs(struct platform_device *pdev,
|
||||
init_waitqueue_head(&vp->irq_queue);
|
||||
|
||||
irq = platform_get_irq(pdev, i);
|
||||
if (irq <= 0) {
|
||||
dev_err(&pdev->dev, "failed to get IRQ %d\n", i);
|
||||
if (irq <= 0)
|
||||
return -ENXIO;
|
||||
}
|
||||
|
||||
ret = devm_request_irq(&pdev->dev, irq, s3c_camif_irq_handler,
|
||||
0, dev_name(&pdev->dev), vp);
|
||||
|
@ -693,16 +693,12 @@ static int c8sectpfe_probe(struct platform_device *pdev)
|
||||
fei->sram_size = resource_size(res);
|
||||
|
||||
fei->idle_irq = platform_get_irq_byname(pdev, "c8sectpfe-idle-irq");
|
||||
if (fei->idle_irq < 0) {
|
||||
dev_err(dev, "Can't get c8sectpfe-idle-irq\n");
|
||||
if (fei->idle_irq < 0)
|
||||
return fei->idle_irq;
|
||||
}
|
||||
|
||||
fei->error_irq = platform_get_irq_byname(pdev, "c8sectpfe-error-irq");
|
||||
if (fei->error_irq < 0) {
|
||||
dev_err(dev, "Can't get c8sectpfe-error-irq\n");
|
||||
if (fei->error_irq < 0)
|
||||
return fei->error_irq;
|
||||
}
|
||||
|
||||
platform_set_drvdata(pdev, fei);
|
||||
|
||||
|
@ -341,10 +341,8 @@ int hva_hw_probe(struct platform_device *pdev, struct hva_dev *hva)
|
||||
|
||||
/* get status interruption resource */
|
||||
ret = platform_get_irq(pdev, 0);
|
||||
if (ret < 0) {
|
||||
dev_err(dev, "%s failed to get status IRQ\n", HVA_PREFIX);
|
||||
if (ret < 0)
|
||||
goto err_clk;
|
||||
}
|
||||
hva->irq_its = ret;
|
||||
|
||||
ret = devm_request_threaded_irq(dev, hva->irq_its, hva_hw_its_interrupt,
|
||||
@ -360,10 +358,8 @@ int hva_hw_probe(struct platform_device *pdev, struct hva_dev *hva)
|
||||
|
||||
/* get error interruption resource */
|
||||
ret = platform_get_irq(pdev, 1);
|
||||
if (ret < 0) {
|
||||
dev_err(dev, "%s failed to get error IRQ\n", HVA_PREFIX);
|
||||
if (ret < 0)
|
||||
goto err_clk;
|
||||
}
|
||||
hva->irq_err = ret;
|
||||
|
||||
ret = devm_request_threaded_irq(dev, hva->irq_err, hva_hw_err_interrupt,
|
||||
|
@ -1699,11 +1699,8 @@ static int dcmi_probe(struct platform_device *pdev)
|
||||
dcmi->bus.data_shift = ep.bus.parallel.data_shift;
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq <= 0) {
|
||||
if (irq != -EPROBE_DEFER)
|
||||
dev_err(&pdev->dev, "Could not get irq\n");
|
||||
if (irq <= 0)
|
||||
return irq ? irq : -ENXIO;
|
||||
}
|
||||
|
||||
dcmi->res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
if (!dcmi->res) {
|
||||
|
@ -866,11 +866,8 @@ static int sun6i_csi_resource_request(struct sun6i_csi_dev *sdev,
|
||||
}
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0) {
|
||||
dev_err(&pdev->dev, "No csi IRQ specified\n");
|
||||
ret = -ENXIO;
|
||||
return ret;
|
||||
}
|
||||
if (irq < 0)
|
||||
return -ENXIO;
|
||||
|
||||
ret = devm_request_irq(&pdev->dev, irq, sun6i_csi_isr, 0, MODULE_NAME,
|
||||
sdev);
|
||||
|
@ -81,10 +81,8 @@ static int img_ir_probe(struct platform_device *pdev)
|
||||
|
||||
/* Get resources from platform device */
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0) {
|
||||
dev_err(&pdev->dev, "cannot find IRQ resource\n");
|
||||
if (irq < 0)
|
||||
return irq;
|
||||
}
|
||||
|
||||
/* Private driver data */
|
||||
priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
|
||||
|
@ -232,10 +232,8 @@ static int hix5hd2_ir_probe(struct platform_device *pdev)
|
||||
return PTR_ERR(priv->base);
|
||||
|
||||
priv->irq = platform_get_irq(pdev, 0);
|
||||
if (priv->irq < 0) {
|
||||
dev_err(dev, "irq can not get\n");
|
||||
if (priv->irq < 0)
|
||||
return priv->irq;
|
||||
}
|
||||
|
||||
rdev = rc_allocate_device(RC_DRIVER_IR_RAW);
|
||||
if (!rdev)
|
||||
|
@ -117,10 +117,8 @@ static int meson_ir_probe(struct platform_device *pdev)
|
||||
return PTR_ERR(ir->reg);
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0) {
|
||||
dev_err(dev, "no irq resource\n");
|
||||
if (irq < 0)
|
||||
return irq;
|
||||
}
|
||||
|
||||
ir->rc = devm_rc_allocate_device(dev, RC_DRIVER_IR_RAW);
|
||||
if (!ir->rc) {
|
||||
|
@ -358,10 +358,8 @@ static int mtk_ir_probe(struct platform_device *pdev)
|
||||
platform_set_drvdata(pdev, ir);
|
||||
|
||||
ir->irq = platform_get_irq(pdev, 0);
|
||||
if (ir->irq < 0) {
|
||||
dev_err(dev, "no irq resource\n");
|
||||
if (ir->irq < 0)
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (clk_prepare_enable(ir->clk)) {
|
||||
dev_err(dev, "try to enable ir_clk failed\n");
|
||||
|
@ -256,7 +256,6 @@ static int sunxi_ir_probe(struct platform_device *pdev)
|
||||
/* IRQ */
|
||||
ir->irq = platform_get_irq(pdev, 0);
|
||||
if (ir->irq < 0) {
|
||||
dev_err(dev, "no irq resource\n");
|
||||
ret = ir->irq;
|
||||
goto exit_free_dev;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user