pci.h 987 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Atheros AR71XX/AR724X PCI support
  3. *
  4. * Copyright (C) 2011 René Bolldorf <xsecute@googlemail.com>
  5. * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
  6. * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License version 2 as published
  10. * by the Free Software Foundation.
  11. */
  12. #ifndef _ATH79_PCI_H
  13. #define _ATH79_PCI_H
  14. struct ath79_pci_irq {
  15. u8 slot;
  16. u8 pin;
  17. int irq;
  18. };
  19. #ifdef CONFIG_PCI
  20. void ath79_pci_set_irq_map(unsigned nr_irqs, const struct ath79_pci_irq *map);
  21. void ath79_pci_set_plat_dev_init(int (*func)(struct pci_dev *dev));
  22. int ath79_register_pci(void);
  23. #else
  24. static inline void
  25. ath79_pci_set_irq_map(unsigned nr_irqs, const struct ath79_pci_irq *map) {}
  26. static inline void
  27. ath79_pci_set_plat_dev_init(int (*func)(struct pci_dev *)) {}
  28. static inline int ath79_register_pci(void) { return 0; }
  29. #endif
  30. #endif /* _ATH79_PCI_H */