diff options
author | Peter Chen <peter.chen@freescale.com> | 2014-10-14 11:56:01 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-04 02:42:04 +0300 |
commit | 03cfba992ddaf92a026548f3b5ad565425253f27 (patch) | |
tree | cbff1a5ae877ccf10f5b5837f3c098a782989f58 /drivers/usb/host/ehci-mv.c | |
parent | b8f2854b06fad0ff3bb3eb0fa76813f50e03da64 (diff) | |
download | linux-03cfba992ddaf92a026548f3b5ad565425253f27.tar.xz |
usb: host: ehci-mv: delete unnecessary 'out of memory' messages
The memory subsystem has already had similar message for it.
Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-mv.c')
-rw-r--r-- | drivers/usb/host/ehci-mv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-mv.c b/drivers/usb/host/ehci-mv.c index 08147c35f836..b1855c1b6cd4 100644 --- a/drivers/usb/host/ehci-mv.c +++ b/drivers/usb/host/ehci-mv.c @@ -153,7 +153,6 @@ static int mv_ehci_probe(struct platform_device *pdev) ehci_mv = devm_kzalloc(&pdev->dev, sizeof(*ehci_mv), GFP_KERNEL); if (ehci_mv == NULL) { - dev_err(&pdev->dev, "cannot allocate ehci_hcd_mv\n"); retval = -ENOMEM; goto err_put_hcd; } |