diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-05-07 15:46:23 +0900 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2014-05-14 09:23:29 -0500 |
commit | c797f7fd5c64c8947900be03f0cd229879a708e6 (patch) | |
tree | fa9f88dd12bb2373e988196dd2142f6e41512acf | |
parent | 8a24bb403974760b420777a76637b2e9f87ffa3f (diff) |
usb: gadget: m66592-udc: remove unnecessary OOM messages
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>
-rw-r--r-- | drivers/usb/gadget/m66592-udc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/gadget/m66592-udc.c b/drivers/usb/gadget/m66592-udc.c index 8cae01d88597..0d17174b86f8 100644 --- a/drivers/usb/gadget/m66592-udc.c +++ b/drivers/usb/gadget/m66592-udc.c @@ -1594,7 +1594,6 @@ static int __init m66592_probe(struct platform_device *pdev) m66592 = kzalloc(sizeof(struct m66592), GFP_KERNEL); if (m66592 == NULL) { ret = -ENOMEM; - pr_err("kzalloc error\n"); goto clean_up; } |