diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-09-25 10:10:51 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert+renesas@glider.be> | 2017-09-28 17:57:34 +0200 |
commit | 168bcbcb1c72a4753fc64ef384b46e330bfccd08 (patch) | |
tree | 2df54f99c80f230ef7fd8165e208dac26f1dd433 /drivers/clk/renesas/clk-mstp.c | |
parent | clk: renesas: cpg-mssr: Add R8A77970 support (diff) | |
download | linux-168bcbcb1c72a4753fc64ef384b46e330bfccd08.tar.xz linux-168bcbcb1c72a4753fc64ef384b46e330bfccd08.zip |
clk: renesas: mstp: Delete error messages for failed memory allocations
The script "checkpatch.pl" pointed information out like the following.
WARNING: Possible unnecessary 'out of memory' message
Thus fix affected source code places.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Diffstat (limited to 'drivers/clk/renesas/clk-mstp.c')
-rw-r--r-- | drivers/clk/renesas/clk-mstp.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/clk/renesas/clk-mstp.c b/drivers/clk/renesas/clk-mstp.c index 500a9e4e03c4..c944cc421e30 100644 --- a/drivers/clk/renesas/clk-mstp.c +++ b/drivers/clk/renesas/clk-mstp.c @@ -156,10 +156,8 @@ static struct clk * __init cpg_mstp_clock_register(const char *name, struct clk *clk; clock = kzalloc(sizeof(*clock), GFP_KERNEL); - if (!clock) { - pr_err("%s: failed to allocate MSTP clock.\n", __func__); + if (!clock) return ERR_PTR(-ENOMEM); - } init.name = name; init.ops = &cpg_mstp_clock_ops; @@ -196,7 +194,6 @@ static void __init cpg_mstp_clocks_init(struct device_node *np) if (group == NULL || clks == NULL) { kfree(group); kfree(clks); - pr_err("%s: failed to allocate group\n", __func__); return; } |