]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
usb: gadget: fusb300_udc: remove unnecessary OOM messages
authorJingoo Han <jg1.han@samsung.com>
Wed, 7 May 2014 06:44:59 +0000 (15:44 +0900)
committerFelipe Balbi <balbi@ti.com>
Wed, 14 May 2014 14:23:28 +0000 (09:23 -0500)
The site-specific OOM messages are unnecessary, because they
duplicate the MM subsystem generic OOM message.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/fusb300_udc.c

index 6423f1840ed9e2fcadee2752472d864c896eec8e..3deb4e9380717386aca6c8638e25f6514d6ec60e 100644 (file)
@@ -1400,17 +1400,13 @@ static int __init fusb300_probe(struct platform_device *pdev)
 
        /* initialize udc */
        fusb300 = kzalloc(sizeof(struct fusb300), GFP_KERNEL);
-       if (fusb300 == NULL) {
-               pr_err("kzalloc error\n");
+       if (fusb300 == NULL)
                goto clean_up;
-       }
 
        for (i = 0; i < FUSB300_MAX_NUM_EP; i++) {
                _ep[i] = kzalloc(sizeof(struct fusb300_ep), GFP_KERNEL);
-               if (_ep[i] == NULL) {
-                       pr_err("_ep kzalloc error\n");
+               if (_ep[i] == NULL)
                        goto clean_up;
-               }
                fusb300->ep[i] = _ep[i];
        }