Home | History | Annotate | Download | only in gpxe

Lines Matching refs:where

26 extern void pcidirect_prepare ( struct pci_device *pci, int where );
43 * @v where Location within PCI configuration space
49 unsigned int where,
51 pcidirect_prepare ( pci, where );
52 *value = inb ( PCIDIRECT_CONFIG_DATA + ( where & 3 ) );
60 * @v where Location within PCI configuration space
66 unsigned int where,
68 pcidirect_prepare ( pci, where );
69 *value = inw ( PCIDIRECT_CONFIG_DATA + ( where & 2 ) );
77 * @v where Location within PCI configuration space
83 unsigned int where,
85 pcidirect_prepare ( pci, where );
94 * @v where Location within PCI configuration space
100 unsigned int where,
102 pcidirect_prepare ( pci, where );
103 outb ( value, PCIDIRECT_CONFIG_DATA + ( where & 3 ) );
111 * @v where Location within PCI configuration space
117 unsigned int where,
119 pcidirect_prepare ( pci, where );
120 outw ( value, PCIDIRECT_CONFIG_DATA + ( where & 2 ) );
128 * @v where Location within PCI configuration space
134 unsigned int where,
136 pcidirect_prepare ( pci, where );