PM / clk: Remove error message on out-of-memory condition
There is no need to print an error message if kstrdup() fails, as the
memory allocation core already takes care of that.
Note that commit 59d84ca8c4
("PM / OPP / clk: Remove unnecessary
OOM message") already removed similar error messages, but this one was
forgotten.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
committed by
Rafael J. Wysocki
parent
7e186d9de9
commit
338c993f9a
@@ -93,8 +93,6 @@ static int __pm_clk_add(struct device *dev, const char *con_id,
|
|||||||
if (con_id) {
|
if (con_id) {
|
||||||
ce->con_id = kstrdup(con_id, GFP_KERNEL);
|
ce->con_id = kstrdup(con_id, GFP_KERNEL);
|
||||||
if (!ce->con_id) {
|
if (!ce->con_id) {
|
||||||
dev_err(dev,
|
|
||||||
"Not enough memory for clock connection ID.\n");
|
|
||||||
kfree(ce);
|
kfree(ce);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user