[PATCH 2/2] chipidea: Use devm_request_irq()
From: Tejun Heo <hidden>
Date: 2013-07-31 10:41:31
Also in:
lkml
On Wed, Jul 31, 2013 at 12:28:53PM +0200, Uwe Kleine-K?nig wrote:
Well, you cannot avoid assuming that the irq is still active when your
driver's remove callback is called. But I agree about crappyness at the
end of the destruction path. The problem is that crap is as easy as:
probe(..)
{
clk = devm_get_clk(...);
clk_prepare_enable(clk);
writel(1, base + IRQENABLE);
devm_request_irq(...);
}
remove(..)
{
writel(0, base + IRQENABLE);
clk_disable_unprepare(clk);
}
and I think there are more and more drivers doing that.Oh, so, the problem is that the driver is mixing devm and non-devm resource management and ending up messing the order of shutdown? Well, the obvious solution is using devm for clk too. devm does provide constructs to build custom destruction sequence so that such calls can be mixed but it's a bit of hassle and mostly meant for driver midlayers (libata, firewire, usb and so on) so that they can provide nicely wrapped init/exit helpers for low level drivers. In general, partial devm conversion can easily lead to subtle shutdown order problems and it's best to go all the way. Thanks. -- tejun