We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122c577 commit 9421e45Copy full SHA for 9421e45
drivers/uio/uio.c
@@ -902,8 +902,9 @@ int __uio_register_device(struct module *owner,
902
* FDs at the time of unregister and therefore may not be
903
* freed until they are released.
904
*/
905
- ret = request_irq(info->irq, uio_interrupt,
906
- info->irq_flags, info->name, idev);
+ ret = request_threaded_irq(info->irq, NULL, uio_interrupt,
+ info->irq_flags, info->name, idev);
907
+
908
if (ret)
909
goto err_request_irq;
910
}
0 commit comments