Kernel core already prints detailed report about memory allocation
failures, so drivers should not have their own error messages.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlow...@linaro.org>
---
 drivers/gpu/drm/msm/dsi/dsi_host.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/msm/dsi/dsi_host.c 
b/drivers/gpu/drm/msm/dsi/dsi_host.c
index 
a3c344b75fc2e90923cd6d26df87b7c05208f736..ab5d6fd53972f62307b0c5b801cca8b2394c5556
 100644
--- a/drivers/gpu/drm/msm/dsi/dsi_host.c
+++ b/drivers/gpu/drm/msm/dsi/dsi_host.c
@@ -1910,10 +1910,8 @@ int msm_dsi_host_init(struct msm_dsi *msm_dsi)
                return dev_err_probe(&pdev->dev, ret, "%s: unable to initialize 
dsi clks\n", __func__);
 
        msm_host->rx_buf = devm_kzalloc(&pdev->dev, SZ_4K, GFP_KERNEL);
-       if (!msm_host->rx_buf) {
-               pr_err("%s: alloc rx temp buf failed\n", __func__);
+       if (!msm_host->rx_buf)
                return -ENOMEM;
-       }
 
        ret = devm_pm_opp_set_clkname(&pdev->dev, "byte");
        if (ret)

-- 
2.43.0

Reply via email to