- 论坛徽章:
- 0
|
early_read_config_byte 在哪里定义的?
- #define EARLY_PCI_OP(rw, size, type) \
- int early_##rw##_config_##size(struct pci_controller *hose, int bus, \
- int devfn, int offset, type value) \
- { \
- return pci_##rw##_config_##size(fake_pci_dev(hose, bus, devfn), \
- offset, value); \
- }
- EARLY_PCI_OP(read, byte, u8 *)
- EARLY_PCI_OP(read, word, u16 *)
- EARLY_PCI_OP(read, dword, u32 *)
- EARLY_PCI_OP(write, byte, u8)
- EARLY_PCI_OP(write, word, u16)
- EARLY_PCI_OP(write, dword, u32)
复制代码
/usr/src/linux-2.4.20-8d/arch/ppc/kernel/pci.c |
|