From 2df49234c6508052ed02602f882d3ce0332d937f Mon Sep 17 00:00:00 2001 From: Ramon Fried Date: Fri, 21 Sep 2018 13:35:44 +0300 Subject: ehci: msm: Add missing platdata platdata_auto_alloc_size was not initialized in structure. Caused null pointer dereference when configuring device as gadget. Signed-off-by: Ramon Fried --- drivers/usb/host/ehci-msm.c | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/usb/host/ehci-msm.c') diff --git a/drivers/usb/host/ehci-msm.c b/drivers/usb/host/ehci-msm.c index db98262..e7fb76d 100644 --- a/drivers/usb/host/ehci-msm.c +++ b/drivers/usb/host/ehci-msm.c @@ -167,5 +167,6 @@ U_BOOT_DRIVER(usb_ehci) = { .remove = ehci_usb_remove, .ops = &ehci_usb_ops, .priv_auto_alloc_size = sizeof(struct msm_ehci_priv), + .platdata_auto_alloc_size = sizeof(struct usb_platdata), .flags = DM_FLAG_ALLOC_PRIV_DMA, }; -- cgit v1.1