]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
usb: musb: tusb6010: check return value after calling platform_get_resource()
authorYang Yingliang <yangyingliang@huawei.com>
Wed, 15 Sep 2021 03:49:25 +0000 (11:49 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 26 Nov 2021 10:36:19 +0000 (11:36 +0100)
[ Upstream commit 14651496a3de6807a17c310f63c894ea0c5d858e ]

It will cause null-ptr-deref if platform_get_resource() returns NULL,
we need check the return value.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20210915034925.2399823-1-yangyingliang@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/usb/musb/tusb6010.c

index 4ecfbf6bb1fa80574e03d8b6b388d1a43bb9c114..902507da8aa85e4918710a1d274c967850bc414d 100644 (file)
@@ -1103,6 +1103,11 @@ static int tusb_musb_init(struct musb *musb)
 
        /* dma address for async dma */
        mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+       if (!mem) {
+               pr_debug("no async dma resource?\n");
+               ret = -ENODEV;
+               goto done;
+       }
        musb->async = mem->start;
 
        /* dma address for sync dma */