]> git.hungrycats.org Git - linux/commitdiff
atm: firestream: check the return value of ioremap() in fs_init()
authorJia-Ju Bai <baijiaju1990@gmail.com>
Fri, 25 Feb 2022 12:52:30 +0000 (04:52 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 19 Mar 2022 12:40:17 +0000 (13:40 +0100)
[ Upstream commit d4e26aaea7f82ba884dcb4acfe689406bc092dc3 ]

The function ioremap() in fs_init() can fail, so its return value should
be checked.

Reported-by: TOTE Robot <oslab@tsinghua.edu.cn>
Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/atm/firestream.c

index 5acb459856752f62a2a0a14bf649f7d88d547905..8995c39330fac76147980998361fe35df0c48349 100644 (file)
@@ -1677,6 +1677,8 @@ static int fs_init(struct fs_dev *dev)
        dev->hw_base = pci_resource_start(pci_dev, 0);
 
        dev->base = ioremap(dev->hw_base, 0x1000);
+       if (!dev->base)
+               return 1;
 
        reset_chip (dev);