mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 23:45:31 +08:00
smsc911x: Add check for ioremap_nocache() return code
There is no check for return code of smsc911x_drv_probe() in smsc911x_drv_probe(). The patch adds one. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Alexey Khoroshilov <khoroshilov@ispras.ru> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8f44c9a413
commit
57fe14790b
@ -2467,6 +2467,10 @@ static int smsc911x_drv_probe(struct platform_device *pdev)
|
||||
pdata = netdev_priv(dev);
|
||||
dev->irq = irq;
|
||||
pdata->ioaddr = ioremap_nocache(res->start, res_size);
|
||||
if (!pdata->ioaddr) {
|
||||
retval = -ENOMEM;
|
||||
goto out_ioremap_fail;
|
||||
}
|
||||
|
||||
pdata->dev = dev;
|
||||
pdata->msg_enable = ((1 << debug) - 1);
|
||||
@ -2572,6 +2576,7 @@ out_enable_resources_fail:
|
||||
smsc911x_free_resources(pdev);
|
||||
out_request_resources_fail:
|
||||
iounmap(pdata->ioaddr);
|
||||
out_ioremap_fail:
|
||||
free_netdev(dev);
|
||||
out_release_io_1:
|
||||
release_mem_region(res->start, resource_size(res));
|
||||
|
Loading…
Reference in New Issue
Block a user