diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-09-27 19:00:21 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2017-11-14 04:41:53 +0300 |
commit | 63b1a5d75090ac41369d06d609d3268dbf16d41f (patch) | |
tree | 4151559357c221d042fe3a3d74f84344b2b73313 /drivers/clk/spear/clk-aux-synth.c | |
parent | f80c8a29f94faf6d4a2a3b25d4473d62edbd7aab (diff) | |
download | linux-63b1a5d75090ac41369d06d609d3268dbf16d41f.tar.xz |
clk: spear: Delete error messages for failed memory allocations
Omit extra messages for a memory allocation failure in these
functions.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/spear/clk-aux-synth.c')
-rw-r--r-- | drivers/clk/spear/clk-aux-synth.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/clk/spear/clk-aux-synth.c b/drivers/clk/spear/clk-aux-synth.c index f271c350ef94..ee7a7c043e3b 100644 --- a/drivers/clk/spear/clk-aux-synth.c +++ b/drivers/clk/spear/clk-aux-synth.c @@ -149,10 +149,8 @@ struct clk *clk_register_aux(const char *aux_name, const char *gate_name, } aux = kzalloc(sizeof(*aux), GFP_KERNEL); - if (!aux) { - pr_err("could not allocate aux clk\n"); + if (!aux) return ERR_PTR(-ENOMEM); - } /* struct clk_aux assignments */ if (!masks) |