Searched defs:where (Results 1 - 2 of 2) sorted by relevance

/solaris-x11-s11/open-src/kernel/drm/src/
H A Ddrm_sun_pci.c149 void pci_read_config_byte(struct pci_dev *pdev, int where, u8 *val) argument
151 *val = pci_config_get8(pdev->pci_cfg_acc_handle, where);
154 void pci_read_config_word(struct pci_dev *pdev, int where, u16 *val) argument
156 *val = pci_config_get16(pdev->pci_cfg_acc_handle, where);
159 void pci_read_config_dword(struct pci_dev *pdev, int where, u32 *val) argument
161 *val = pci_config_get32(pdev->pci_cfg_acc_handle, where);
164 void pci_write_config_byte(struct pci_dev *pdev, int where, u8 val) argument
166 pci_config_put8(pdev->pci_cfg_acc_handle, where, val);
169 void pci_write_config_word(struct pci_dev *pdev, int where, u16 val) argument
171 pci_config_put16(pdev->pci_cfg_acc_handle, where, va
174 pci_write_config_dword(struct pci_dev *pdev, int where, u32 val) argument
[all...]
/solaris-x11-s11/open-src/kernel/i915/src/
H A Di915_dma.c287 * that tells us where the next instruction to check is. Any illegal
1159 int i915_bridge_dev_read_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 *val) argument
1161 u16 data = (u16)where;
1171 int i915_bridge_dev_write_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 val) argument
1173 u32 data = (u16)where << 16 | val;
1259 * tiny window where we will loose hotplug notifactions.

Completed in 20 milliseconds