fixup-bcm63xx.c 485 B

12345678910111213141516171819202122
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr>
  7. */
  8. #include <linux/types.h>
  9. #include <linux/pci.h>
  10. #include <bcm63xx_cpu.h>
  11. int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
  12. {
  13. return bcm63xx_get_irq_number(IRQ_PCI);
  14. }
  15. int pcibios_plat_dev_init(struct pci_dev *dev)
  16. {
  17. return 0;
  18. }