aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Griffin <peter.griffin@linaro.org>2016-06-07 18:47:15 +0100
committerPeter Griffin <peter.griffin@linaro.org>2016-06-08 09:49:53 +0100
commit77bf2b7903264a0431ae6ea7ff7332b24a41edd7 (patch)
tree2f1eedcce7742153287affc027b9331e0cc0efc7
parenta1d5924768065429dbb4b9b17cc31159e51f5187 (diff)
phy: phy-qcom-ufs-qmp-20nm: Remove site specific OOM error messagev4.7-rc2-dmaengine-fixups
kzalloc will issue its own error message including a dump_stack() so remote the site specific message. Signed-off-by: Peter Griffin <peter.griffin@linaro.org> --- v2: Add brackets, so goto is not executed unconditionally (Baruch)
-rw-r--r--drivers/phy/phy-qcom-ufs-qmp-20nm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/phy/phy-qcom-ufs-qmp-20nm.c b/drivers/phy/phy-qcom-ufs-qmp-20nm.c
index b16ea77d07b9..770087ab05e2 100644
--- a/drivers/phy/phy-qcom-ufs-qmp-20nm.c
+++ b/drivers/phy/phy-qcom-ufs-qmp-20nm.c
@@ -196,7 +196,6 @@ static int ufs_qcom_phy_qmp_20nm_probe(struct platform_device *pdev)
phy = devm_kzalloc(dev, sizeof(*phy), GFP_KERNEL);
if (!phy) {
- dev_err(dev, "%s: failed to allocate phy\n", __func__);
err = -ENOMEM;
goto out;
}