Lines Matching defs:temp
153 u32 temp;
157 pci_read_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, &temp);
159 pci_read_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, &temp);
161 temp = (temp & 0x0000000e);
164 if (temp == values[i].size_value) {
185 u32 temp;
191 pci_read_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, &temp);
192 temp = ((temp & ~(0x0000000f)) | previous_size->size_value);
193 pci_write_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, temp);
195 pci_read_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, &temp);
196 temp = ((temp & ~(0x0000000f)) | previous_size->size_value);
197 pci_write_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, temp);
206 u32 temp;
230 pci_read_config_dword(agp_bridge->dev, PCI_COMMAND, &temp);
231 pci_write_config_dword(agp_bridge->dev, PCI_COMMAND, temp | (1<<14));
340 u32 temp;
363 pci_read_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, &temp);
364 temp = (((temp & ~(0x0000000e)) | current_size->size_value)
366 pci_write_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, temp);
367 pci_read_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, &temp);
369 pci_read_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, &temp);
370 temp = (((temp & ~(0x0000000e)) | current_size->size_value)
372 pci_write_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, temp);
373 pci_read_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, &temp);