Lines Matching refs:temp
168 int temp;
169 temp = pci_conf_read(pc, tag, addr&~3);
170 temp = temp & ~(0xff << ((addr%4) * 8));
171 temp = temp | (value << ((addr%4) * 8));
172 pci_conf_write(pc, tag, addr&~3, temp);
178 int temp;
179 temp = pci_conf_read(pc, tag, addr&~3);
180 temp = temp >> ((addr%4) * 8);
181 temp = temp & 0xff;
182 return temp;