mirror of https://gitee.com/openkylin/linux.git
irqchip: gic-pm: Remove redundant error log of clock bulk
There is error log in clk_bulk_prepare/enable() Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/1617937474-24630-1-git-send-email-chunfeng.yun@mediatek.com
This commit is contained in:
parent
75768e391f
commit
21a496179c
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue