Re: [PATCH v4 1/2] drivers: provide devm_platform_request_irq()

2020-07-17 Thread Markus Elfring
> v3 -> v4: > - The patch v3 sent on May 27 may be lost somewhere in the > world, so resend it. Can previous patch review aspects get any more attention? https://lore.kernel.org/cocci/5dad9b19-ceb5-1606-9f62-7626e5677...@web.de/ https://lkml.org/lkml/2020/5/27/1326 Regards, Markus

[PATCH v4 1/2] drivers: provide devm_platform_request_irq()

2020-07-17 Thread Dejin Zheng
It will call devm_request_irq() after platform_get_irq() function in many drivers, And sometimes, the error handling of these two functions is incorrect in some drivers. So this function is provided to simplify the driver. Cc: Michal Simek Cc: Wolfram Sang Signed-off-by: Dejin Zheng --- v3 ->