Skip to content

Commit 21a4961

Browse files
Chunfeng YunMarc Zyngier
authored andcommitted
irqchip: gic-pm: Remove redundant error log of clock bulk
There is error log in clk_bulk_prepare/enable() Signed-off-by: Chunfeng Yun <[email protected]> Signed-off-by: Marc Zyngier <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 75768e3 commit 21a4961

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

drivers/irqchip/irq-gic-pm.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,8 @@ static int gic_runtime_resume(struct device *dev)
3030
int ret;
3131

3232
ret = clk_bulk_prepare_enable(data->num_clocks, chip_pm->clks);
33-
if (ret) {
34-
dev_err(dev, "clk_enable failed: %d\n", ret);
33+
if (ret)
3534
return ret;
36-
}
3735

3836
/*
3937
* On the very first resume, the pointer to chip_pm->chip_data

0 commit comments

Comments
 (0)