mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
crypto: mv_cesa - remove NO_IRQ reference
Drivers should not use NO_IRQ, as we are trying to get rid of that. In this case, the call to irq_of_parse_and_map() is both wrong (as it returns '0' on failure, not NO_IRQ) and unnecessary (as platform_get_irq() does the same thing) This removes the call to irq_of_parse_and_map() and checks for the error code correctly. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
ba22a1e2aa
commit
b4587456fe
@ -1091,11 +1091,8 @@ static int mv_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
cp->max_req_size = cp->sram_size - SRAM_CFG_SPACE;
|
cp->max_req_size = cp->sram_size - SRAM_CFG_SPACE;
|
||||||
|
|
||||||
if (pdev->dev.of_node)
|
irq = platform_get_irq(pdev, 0);
|
||||||
irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
|
if (irq < 0) {
|
||||||
else
|
|
||||||
irq = platform_get_irq(pdev, 0);
|
|
||||||
if (irq < 0 || irq == NO_IRQ) {
|
|
||||||
ret = irq;
|
ret = irq;
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user