[media] ngene: remove an unneeded condition
"stat" is always zero here. The condition used to be needed, but we
shifted stuff around in 0f0b270f90
"[media] ngene: CXD2099AR Common
Interface driver".
This doesn't change how the code works, it's just a bit tidier.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
2e71064f2f
commit
bcb2cf6e0b
|
@ -1409,10 +1409,8 @@ static int ngene_start(struct ngene *dev)
|
||||||
if (stat < 0)
|
if (stat < 0)
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
if (!stat)
|
return 0;
|
||||||
return stat;
|
|
||||||
|
|
||||||
/* otherwise error: fall through */
|
|
||||||
fail:
|
fail:
|
||||||
ngwritel(0, NGENE_INT_ENABLE);
|
ngwritel(0, NGENE_INT_ENABLE);
|
||||||
free_irq(dev->pci_dev->irq, dev);
|
free_irq(dev->pci_dev->irq, dev);
|
||||||
|
|
Loading…
Reference in New Issue