Lines Matching defs:tmp
313 u32 tmp;
325 pci_read_config_dword(bridge, 0x48, &tmp);
326 tmp |= 1; /* enable blind prefetching */
327 tmp |= 1 << 11; /* enable beacon generation */
328 pci_write_config_dword(bridge, 0x48, tmp);
331 pci_read_config_dword(bridge, 0x88, &tmp);
332 tmp &= ~(7 << 27);
333 tmp |= 2 << 27; /* set prefetch size to 128 bytes */
334 pci_write_config_dword(bridge, 0x88, tmp);
338 pci_read_config_dword(bridge, 0x40, &tmp);
339 tmp |= 1; /* park the PCI arbiter to the sound chip */
340 pci_write_config_dword(bridge, 0x40, tmp);
344 pci_read_config_dword(bridge, 0xe8, &tmp);
345 tmp &= ~0xf; /* request length limit: 64 bytes */
346 tmp &= ~(0xf << 8);
347 tmp |= 1 << 8; /* request count limit: one buffer */
348 pci_write_config_dword(bridge, 0xe8, tmp);