mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-06 14:05:39 +00:00
NTB/msi: Use irq_has_action()
Use the proper core function. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Logan Gunthorpe <logang@deltatee.com> Link: https://lore.kernel.org/r/20201210194044.255887860@linutronix.de
This commit is contained in:
parent
886c812165
commit
1110918e43
@ -282,15 +282,13 @@ int ntbm_msi_request_threaded_irq(struct ntb_dev *ntb, irq_handler_t handler,
|
||||
struct ntb_msi_desc *msi_desc)
|
||||
{
|
||||
struct msi_desc *entry;
|
||||
struct irq_desc *desc;
|
||||
int ret;
|
||||
|
||||
if (!ntb->msi)
|
||||
return -EINVAL;
|
||||
|
||||
for_each_pci_msi_entry(entry, ntb->pdev) {
|
||||
desc = irq_to_desc(entry->irq);
|
||||
if (desc->action)
|
||||
if (irq_has_action(entry->irq))
|
||||
continue;
|
||||
|
||||
ret = devm_request_threaded_irq(&ntb->dev, entry->irq, handler,
|
||||
|
Loading…
Reference in New Issue
Block a user