Home | History | Annotate | Download | only in gpxe

Lines Matching refs:where

39  * @v where	Location within PCI configuration space
45 unsigned int where,
50 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_BYTE | where, &tmp );
59 * @v where Location within PCI configuration space
65 unsigned int where,
70 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_WORD | where, &tmp );
79 * @v where Location within PCI configuration space
85 unsigned int where,
87 return pcibios_read ( pci, PCIBIOS_READ_CONFIG_DWORD | where, value );
94 * @v where Location within PCI configuration space
100 unsigned int where,
102 return pcibios_write ( pci, PCIBIOS_WRITE_CONFIG_BYTE | where, value );
109 * @v where Location within PCI configuration space
115 unsigned int where,
117 return pcibios_write ( pci, PCIBIOS_WRITE_CONFIG_WORD | where, value );
124 * @v where Location within PCI configuration space
130 unsigned int where,
132 return pcibios_write ( pci, PCIBIOS_WRITE_CONFIG_DWORD | where, value);