1

我在哪里可以找到以下函数的完整实现/主体,在 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来查找这些函数的定义,但在这两种情况下都没有运气。

4

1 回答 1

5

您无法使用“哑”索引器/标记器找到它们,因为它们是由此处的宏生成的。

于 2013-06-07T11:52:59.197 回答