Lines Matching defs:temp
149 u32 temp;
153 pci_read_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, &temp);
155 pci_read_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, &temp);
157 temp = (temp & 0x0000000e);
160 if (temp == values[i].size_value) {
181 u32 temp;
187 pci_read_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, &temp);
188 temp = ((temp & ~(0x0000000f)) | previous_size->size_value);
189 pci_write_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, temp);
191 pci_read_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, &temp);
192 temp = ((temp & ~(0x0000000f)) | previous_size->size_value);
193 pci_write_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, temp);
202 u32 temp;
226 pci_read_config_dword(agp_bridge->dev, PCI_COMMAND, &temp);
227 pci_write_config_dword(agp_bridge->dev, PCI_COMMAND, temp | (1<<14));
349 u32 temp;
372 pci_read_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, &temp);
373 temp = (((temp & ~(0x0000000e)) | current_size->size_value)
375 pci_write_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, temp);
376 pci_read_config_dword(agp_bridge->dev, ATI_RS100_APSIZE, &temp);
378 pci_read_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, &temp);
379 temp = (((temp & ~(0x0000000e)) | current_size->size_value)
381 pci_write_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, temp);
382 pci_read_config_dword(agp_bridge->dev, ATI_RS300_APSIZE, &temp);