media: mx2_emmaprp: Check for platform_get_irq() error
platform_get_irq() may fail, so we should better check its return value and propagate it in the case of error. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
3cdb977ec8
commit
d4e192cc44
|
@ -942,6 +942,8 @@ static int emmaprp_probe(struct platform_device *pdev)
|
|||
platform_set_drvdata(pdev, pcdev);
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0)
|
||||
return irq;
|
||||
ret = devm_request_irq(&pdev->dev, irq, emmaprp_irq, 0,
|
||||
dev_name(&pdev->dev), pcdev);
|
||||
if (ret)
|
||||
|
|
Loading…
Reference in New Issue