]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usb: gadget: amd5536udc: rewrite init_dma_pools
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>
Tue, 22 Sep 2015 13:24:26 +0000 (18:54 +0530)
committerFelipe Balbi <balbi@ti.com>
Thu, 1 Oct 2015 17:40:19 +0000 (12:40 -0500)
A rewrite of init_dma_pools() with proper error handling.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/udc/amd5536udc.c

index 175ca93fe5e2d5159804301e99d12e6f048a47da..38a68582dd6b7e007b351680da8005208aab6131 100644 (file)
@@ -3169,8 +3169,7 @@ static int init_dma_pools(struct udc *dev)
                sizeof(struct udc_data_dma), 0, 0);
        if (!dev->data_requests) {
                DBG(dev, "can't get request data pool\n");
-               retval = -ENOMEM;
-               goto finished;
+               return -ENOMEM;
        }
 
        /* EP0 in dma regs = dev control regs */
@@ -3182,14 +3181,14 @@ static int init_dma_pools(struct udc *dev)
        if (!dev->stp_requests) {
                DBG(dev, "can't get stp request pool\n");
                retval = -ENOMEM;
-               goto finished;
+               goto err_create_dma_pool;
        }
        /* setup */
        td_stp = dma_pool_alloc(dev->stp_requests, GFP_KERNEL,
                                &dev->ep[UDC_EP0OUT_IX].td_stp_dma);
        if (td_stp == NULL) {
                retval = -ENOMEM;
-               goto finished;
+               goto err_alloc_dma;
        }
        dev->ep[UDC_EP0OUT_IX].td_stp = td_stp;
 
@@ -3198,12 +3197,20 @@ static int init_dma_pools(struct udc *dev)
                                &dev->ep[UDC_EP0OUT_IX].td_phys);
        if (td_data == NULL) {
                retval = -ENOMEM;
-               goto finished;
+               goto err_alloc_phys;
        }
        dev->ep[UDC_EP0OUT_IX].td = td_data;
        return 0;
 
-finished:
+err_alloc_phys:
+       dma_pool_free(dev->stp_requests, dev->ep[UDC_EP0OUT_IX].td_stp,
+                     dev->ep[UDC_EP0OUT_IX].td_stp_dma);
+err_alloc_dma:
+       dma_pool_destroy(dev->stp_requests);
+       dev->stp_requests = NULL;
+err_create_dma_pool:
+       dma_pool_destroy(dev->data_requests);
+       dev->data_requests = NULL;
        return retval;
 }