On Fri, Mar 19, 2021 at 05:33:40PM +0800, Tian Tao wrote: > Use devm_request_irq() to get rid of manual unregistration. > > Signed-off-by: Tian Tao Please don't send such patches unless you have a deep understanding of the hardware. devm and interrupts are a dangerous combination because you can get interrupts when the driver is gone already ( == OOPS) if you don't pay close attention. For this reason, I won't take janitorial patches with regard to devm and interrupts.