clk: zynq: Remove unnecessary OOM message
As checkpatch suggests: WARNING: Possible unnecessary 'out of memory' message, remove an error message after failing kmalloc() from the PLL driver. Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com> Signed-off-by: Mike Turquette <mturquette@linaro.org>
This commit is contained in:
parent
16eeaec779
commit
88cebf5e09
|
@ -211,10 +211,8 @@ struct clk *clk_register_zynq_pll(const char *name, const char *parent,
|
||||||
};
|
};
|
||||||
|
|
||||||
pll = kmalloc(sizeof(*pll), GFP_KERNEL);
|
pll = kmalloc(sizeof(*pll), GFP_KERNEL);
|
||||||
if (!pll) {
|
if (!pll)
|
||||||
pr_err("%s: Could not allocate Zynq PLL clk.\n", __func__);
|
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
}
|
|
||||||
|
|
||||||
/* Populate the struct */
|
/* Populate the struct */
|
||||||
pll->hw.init = &initd;
|
pll->hw.init = &initd;
|
||||||
|
|
Loading…
Reference in New Issue