我在哪里可以找到以下函数的完整实现/主体,在 Linux 内核的“include/linux/pci.h”中定义为函数原型。
int pci_bus_read_config_byte (struct pci_bus *bus, unsigned int devfn, int where, u8 *val);
int pci_bus_write_config_byte (struct pci_bus *bus, unsigned int devfn, int where, u8 val);
我通常使用自由电子的交叉引用来查找内核中函数的定义。我还使用cscope来查找这些函数的定义,但在这两种情况下都没有运气。