mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 22:53:20 +00:00
usb: musb: tusb6010: check return value after calling platform_get_resource()
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>
This commit is contained in:
parent
c03d369952
commit
14651496a3
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user