mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 02:30:52 +07:00
clk: hi3620: Delete error messages for a failed memory allocation in two functions
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>
This commit is contained in:
parent
781de7ade6
commit
3cda284b77
@ -430,10 +430,8 @@ static struct clk *hisi_register_clk_mmc(struct hisi_mmc_clock *mmc_clk,
|
|||||||
struct clk_init_data init;
|
struct clk_init_data init;
|
||||||
|
|
||||||
mclk = kzalloc(sizeof(*mclk), GFP_KERNEL);
|
mclk = kzalloc(sizeof(*mclk), GFP_KERNEL);
|
||||||
if (!mclk) {
|
if (!mclk)
|
||||||
pr_err("%s: fail to allocate mmc clk\n", __func__);
|
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
}
|
|
||||||
|
|
||||||
init.name = mmc_clk->name;
|
init.name = mmc_clk->name;
|
||||||
init.ops = &clk_mmc_ops;
|
init.ops = &clk_mmc_ops;
|
||||||
@ -483,10 +481,8 @@ static void __init hi3620_mmc_clk_init(struct device_node *node)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
clk_data->clks = kcalloc(num, sizeof(*clk_data->clks), GFP_KERNEL);
|
clk_data->clks = kcalloc(num, sizeof(*clk_data->clks), GFP_KERNEL);
|
||||||
if (!clk_data->clks) {
|
if (!clk_data->clks)
|
||||||
pr_err("%s: fail to allocate mmc clk\n", __func__);
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < num; i++) {
|
for (i = 0; i < num; i++) {
|
||||||
struct hisi_mmc_clock *mmc_clk = &hi3620_mmc_clks[i];
|
struct hisi_mmc_clock *mmc_clk = &hi3620_mmc_clks[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user