From: Huzaifa Sidhpurwala <huzai...@redhat.com>

tusb_dma was being dereferenced when it was nul

Signed-off-by: Huzaifa Sidhpurwala <huzai...@redhat.com>
Signed-off-by: Felipe Balbi <ba...@ti.com>
---
 drivers/usb/musb/tusb6010_omap.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/musb/tusb6010_omap.c b/drivers/usb/musb/tusb6010_omap.c
index c061a88..99cb541 100644
--- a/drivers/usb/musb/tusb6010_omap.c
+++ b/drivers/usb/musb/tusb6010_omap.c
@@ -680,7 +680,7 @@ dma_controller_create(struct musb *musb, void __iomem *base)
 
        tusb_dma = kzalloc(sizeof(struct tusb_omap_dma), GFP_KERNEL);
        if (!tusb_dma)
-               goto cleanup;
+               goto out;
 
        tusb_dma->musb = musb;
        tusb_dma->tbase = musb->ctrl_base;
@@ -721,6 +721,6 @@ dma_controller_create(struct musb *musb, void __iomem *base)
 
 cleanup:
        dma_controller_destroy(&tusb_dma->controller);
-
+out:
        return NULL;
 }
-- 
1.7.4.rc2

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to