Commit 21a49617 authored by Chunfeng Yun's avatar Chunfeng Yun Committed by Marc Zyngier

irqchip: gic-pm: Remove redundant error log of clock bulk

There is error log in clk_bulk_prepare/enable()
Signed-off-by: default avatarChunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: default avatarMarc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/1617937474-24630-1-git-send-email-chunfeng.yun@mediatek.com
parent 75768e39
...@@ -30,10 +30,8 @@ static int gic_runtime_resume(struct device *dev) ...@@ -30,10 +30,8 @@ static int gic_runtime_resume(struct device *dev)
int ret; int ret;
ret = clk_bulk_prepare_enable(data->num_clocks, chip_pm->clks); ret = clk_bulk_prepare_enable(data->num_clocks, chip_pm->clks);
if (ret) { if (ret)
dev_err(dev, "clk_enable failed: %d\n", ret);
return ret; return ret;
}
/* /*
* On the very first resume, the pointer to chip_pm->chip_data * On the very first resume, the pointer to chip_pm->chip_data
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment