Revert last change. Bug noticed by Linus.
[linux-2.6/linux-mips.git] / include / asm-m68k / pci.h
blob2e767ed59ce59840f8a0e5e501a624d15c9c65fc
1 #ifndef _ASM_M68K_PCI_H
2 #define _ASM_M68K_PCI_H
4 /*
5 * asm-m68k/pci_m68k.h - m68k specific PCI declarations.
7 * Written by Wout Klaren.
8 */
10 struct pci_ops;
13 * Structure with hardware dependent information and functions of the
14 * PCI bus.
17 struct pci_bus_info
20 * Resources of the PCI bus.
23 struct resource mem_space;
24 struct resource io_space;
27 * System dependent functions.
30 struct pci_ops *m68k_pci_ops;
32 void (*fixup)(int pci_modify);
33 void (*conf_device)(unsigned char bus, unsigned char device_fn);
36 #define pcibios_assign_all_busses() 0
38 extern inline void pcibios_set_master(struct pci_dev *dev)
40 /* No special bus mastering setup handling */
43 extern inline void pcibios_penalize_isa_irq(int irq)
45 /* We don't do dynamic PCI IRQ allocation */
48 #endif /* _ASM_M68K_PCI_H */