usb: phy: phy-rcar-gen2-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>
This commit is contained in:
Peter Chen
2014-10-14 15:56:15 +08:00
committed by Felipe Balbi
orang tua 9aabd03272
melakukan 3f8acf35b0

Melihat File

@@ -195,10 +195,8 @@ static int rcar_gen2_usb_phy_probe(struct platform_device *pdev)
return PTR_ERR(base);
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
if (!priv) {
dev_err(dev, "Memory allocation failed\n");
if (!priv)
return -ENOMEM;
}
spin_lock_init(&priv->lock);
priv->clk = clk;