mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
memory: jz4780_nemc: Fix an error pointer vs NULL check in probe()
commit96999c797eupstream. The devm_ioremap() function returns NULL on error, it doesn't return error pointers. This bug could lead to an Oops during probe. Fixes:f046e4a3f0("memory: jz4780_nemc: Only request IO memory the driver will use") Cc: <stable@vger.kernel.org> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Paul Cercueil <paul@crapouillou.net> Link: https://lore.kernel.org/r/20200803143607.GC346925@mwanda Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c88347ae93
commit
e6fc90d170
|
|
@ -306,9 +306,9 @@ static int jz4780_nemc_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
nemc->base = devm_ioremap(dev, res->start, NEMC_REG_LEN);
|
||||
if (IS_ERR(nemc->base)) {
|
||||
if (!nemc->base) {
|
||||
dev_err(dev, "failed to get I/O memory\n");
|
||||
return PTR_ERR(nemc->base);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
writel(0, nemc->base + NEMC_NFCSR);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user