From: Markus Elfring <elfr...@users.sourceforge.net>
Date: Mon, 15 Jan 2018 13:39:25 +0100

Omit extra messages for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfr...@users.sourceforge.net>
---
 drivers/mfd/omap-usb-tll.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/mfd/omap-usb-tll.c b/drivers/mfd/omap-usb-tll.c
index 44a5d66314c6..7945efa0152e 100644
--- a/drivers/mfd/omap-usb-tll.c
+++ b/drivers/mfd/omap-usb-tll.c
@@ -222,10 +222,8 @@ static int usbtll_omap_probe(struct platform_device *pdev)
        dev_dbg(dev, "starting TI HSUSB TLL Controller\n");
 
        tll = devm_kzalloc(dev, sizeof(struct usbtll_omap), GFP_KERNEL);
-       if (!tll) {
-               dev_err(dev, "Memory allocation failed\n");
+       if (!tll)
                return -ENOMEM;
-       }
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        tll->base = devm_ioremap_resource(dev, res);
@@ -258,7 +256,6 @@ static int usbtll_omap_probe(struct platform_device *pdev)
                                                GFP_KERNEL);
        if (!tll->ch_clk) {
                ret = -ENOMEM;
-               dev_err(dev, "Couldn't allocate memory for channel clocks\n");
                goto err_clk_alloc;
        }
 
-- 
2.15.1

Reply via email to