pci.h

来自「Linux Kernel 2.6.9 for OMAP1710」· C头文件 代码 · 共 28 行

H
28
字号
/* * linux/include/asm-generic/pci.h * *  Copyright (C) 2003 Russell King */#ifndef _ASM_GENERIC_PCI_H#define _ASM_GENERIC_PCI_H/** * pcibios_resource_to_bus - convert resource to PCI bus address * @dev: device which owns this resource * @region: converted bus-centric region (start,end) * @res: resource to convert * * Convert a resource to a PCI device bus address or bus window. */static inline voidpcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,			 struct resource *res){	region->start = res->start;	region->end = res->end;}#define pcibios_scan_all_fns(a, b)	0#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?