Skip to content

Commit d815858

Browse files
committed
Merge tag 'pci-v6.19-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci
Pull PCI fix from Bjorn Helgaas: - Add a pci_free_irq_vectors() stub to fix a build issue when CONFIG_PCI is not set (Boqun Feng) * tag 'pci-v6.19-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci: PCI: Provide pci_free_irq_vectors() stub
2 parents b62ce25 + 05f66cf commit d815858

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

include/linux/pci.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2210,6 +2210,10 @@ pci_alloc_irq_vectors(struct pci_dev *dev, unsigned int min_vecs,
22102210
{
22112211
return -ENOSPC;
22122212
}
2213+
2214+
static inline void pci_free_irq_vectors(struct pci_dev *dev)
2215+
{
2216+
}
22132217
#endif /* CONFIG_PCI */
22142218

22152219
/* Include architecture-dependent settings and functions */

0 commit comments

Comments
 (0)