]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
clk: hi3620: Delete error messages for a failed memory allocation in two functions
authorMarkus Elfring <elfring@users.sourceforge.net>
Tue, 18 Apr 2017 08:50:53 +0000 (10:50 +0200)
committerStephen Boyd <sboyd@codeaurora.org>
Wed, 19 Apr 2017 18:28:04 +0000 (11:28 -0700)
The script "checkpatch.pl" pointed information out like the following.

WARNING: Possible unnecessary 'out of memory' message

Thus remove such statements here.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/hisilicon/clk-hi3620.c

index f6dd971c9d3cd59f31dc87d83142676b7a2343cf..33a713ac8fe60d58be33b493e04eb9e022a993f4 100644 (file)
@@ -430,10 +430,8 @@ static struct clk *hisi_register_clk_mmc(struct hisi_mmc_clock *mmc_clk,
        struct clk_init_data init;
 
        mclk = kzalloc(sizeof(*mclk), GFP_KERNEL);
-       if (!mclk) {
-               pr_err("%s: fail to allocate mmc clk\n", __func__);
+       if (!mclk)
                return ERR_PTR(-ENOMEM);
-       }
 
        init.name = mmc_clk->name;
        init.ops = &clk_mmc_ops;
@@ -483,10 +481,8 @@ static void __init hi3620_mmc_clk_init(struct device_node *node)
                return;
 
        clk_data->clks = kcalloc(num, sizeof(*clk_data->clks), GFP_KERNEL);
-       if (!clk_data->clks) {
-               pr_err("%s: fail to allocate mmc clk\n", __func__);
+       if (!clk_data->clks)
                return;
-       }
 
        for (i = 0; i < num; i++) {
                struct hisi_mmc_clock *mmc_clk = &hi3620_mmc_clks[i];