mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 02:20:54 +07:00
soc: ixp4xx: qmgr: Fix an NULL vs IS_ERR() check in probe
The devm_ioremap_resource() function doesn't retunr NULL, it returns
error pointers.
Fixes: ecc133c6da
("soc: ixp4xx: qmgr: Pass resources")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
ab02888e39
commit
c180d710ee
@ -385,8 +385,8 @@ static int ixp4xx_qmgr_probe(struct platform_device *pdev)
|
||||
if (!res)
|
||||
return -ENODEV;
|
||||
qmgr_regs = devm_ioremap_resource(dev, res);
|
||||
if (!qmgr_regs)
|
||||
return -ENOMEM;
|
||||
if (IS_ERR(qmgr_regs))
|
||||
return PTR_ERR(qmgr_regs);
|
||||
|
||||
irq1 = platform_get_irq(pdev, 0);
|
||||
if (irq1 <= 0)
|
||||
|
Loading…
Reference in New Issue
Block a user