From: Peter Chen <peter.chen@freescale.com>
Date: Tue, 14 Oct 2014 07:56:18 +0000 (+0800)
Subject: usb: phy: phy-mv-usb: delete unnecessary 'out of memory' messages
X-Git-Tag: v3.19-rc1~80^2~32^2~177
X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=aa10c7b00eff826bceee2b9f9cd005efc028d881;p=linux.git

usb: phy: phy-mv-usb: 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: Felipe Balbi <balbi@ti.com>
---

diff --git a/drivers/usb/phy/phy-mv-usb.c b/drivers/usb/phy/phy-mv-usb.c
index 7d80c54f0ac6..c9517d8bda8d 100644
--- a/drivers/usb/phy/phy-mv-usb.c
+++ b/drivers/usb/phy/phy-mv-usb.c
@@ -686,10 +686,8 @@ static int mv_otg_probe(struct platform_device *pdev)
 	}
 
 	mvotg = devm_kzalloc(&pdev->dev, sizeof(*mvotg), GFP_KERNEL);
-	if (!mvotg) {
-		dev_err(&pdev->dev, "failed to allocate memory!\n");
+	if (!mvotg)
 		return -ENOMEM;
-	}
 
 	otg = devm_kzalloc(&pdev->dev, sizeof(*otg), GFP_KERNEL);
 	if (!otg)