diff options
author | Peter Chen <peter.chen@freescale.com> | 2014-10-14 03:56:16 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2014-11-03 11:01:06 -0500 |
commit | c62fe55648702c5e736861a4238a58b92072202b (patch) | |
tree | d34026998a3959463ebfbf18b6bea17c72e01c11 /drivers/usb/phy | |
parent | 3f8acf35b019aa996cc16b3658b72ad361cc7931 (diff) |
usb: phy: phy-mxs-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>
Diffstat (limited to 'drivers/usb/phy')
-rw-r--r-- | drivers/usb/phy/phy-mxs-usb.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/phy/phy-mxs-usb.c b/drivers/usb/phy/phy-mxs-usb.c index 0e0c41587a08..a55dadcd47f3 100644 --- a/drivers/usb/phy/phy-mxs-usb.c +++ b/drivers/usb/phy/phy-mxs-usb.c | |||
@@ -390,10 +390,8 @@ static int mxs_phy_probe(struct platform_device *pdev) | |||
390 | } | 390 | } |
391 | 391 | ||
392 | mxs_phy = devm_kzalloc(&pdev->dev, sizeof(*mxs_phy), GFP_KERNEL); | 392 | mxs_phy = devm_kzalloc(&pdev->dev, sizeof(*mxs_phy), GFP_KERNEL); |
393 | if (!mxs_phy) { | 393 | if (!mxs_phy) |
394 | dev_err(&pdev->dev, "Failed to allocate USB PHY structure!\n"); | ||
395 | return -ENOMEM; | 394 | return -ENOMEM; |
396 | } | ||
397 | 395 | ||
398 | /* Some SoCs don't have anatop registers */ | 396 | /* Some SoCs don't have anatop registers */ |
399 | if (of_get_property(np, "fsl,anatop", NULL)) { | 397 | if (of_get_property(np, "fsl,anatop", NULL)) { |