PCI: Provide a default pcibios_update_irq()
Most architectures implement this in exactly the same way. Instead of having each architecture duplicate this function, provide a single implementation in the core and make it a weak symbol so that it can be overridden on architectures where it is required. Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:

committed by
Bjorn Helgaas

parent
3ddbebf878
commit
8885b7b637
@@ -17,6 +17,11 @@
|
||||
#include <linux/ioport.h>
|
||||
#include <linux/cache.h>
|
||||
|
||||
void __weak pcibios_update_irq(struct pci_dev *dev, int irq)
|
||||
{
|
||||
dev_dbg(&dev->dev, "assigning IRQ %02d\n", irq);
|
||||
pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
|
||||
}
|
||||
|
||||
static void
|
||||
pdev_fixup_irq(struct pci_dev *dev,
|
||||
|
Reference in New Issue
Block a user