Lines Matching refs:temp_register

1411 	u32 temp_register = 0xFFFFFFFF;  in board_added()  local
1500 temp_register = 0xFFFFFFFF; in board_added()
1501 dbg("%s: temp register set to %x by power fault\n", __func__, temp_register); in board_added()
1507 …onfig_dword(ctrl->pci_bus, PCI_DEVFN(func->device, func->function), PCI_VENDOR_ID, &temp_register); in board_added()
1509 dbg("%s: temp_register is %x\n", __func__, temp_register); in board_added()
1513 temp_register = 0xFFFFFFFF; in board_added()
1514 dbg("%s: temp register set to %x by error\n", __func__, temp_register); in board_added()
1521 if (temp_register != 0xFFFFFFFF) { in board_added()
2331 u32 temp_register; in configure_new_function() local
2764 temp_register = 0xFFFFFFFF; in configure_new_function()
2767 rc = pci_bus_write_config_dword(pci_bus, devfn, cloop, temp_register); in configure_new_function()
2769 rc = pci_bus_read_config_dword(pci_bus, devfn, cloop, &temp_register); in configure_new_function()
2770 dbg("CND: base = 0x%x\n", temp_register); in configure_new_function()
2772 if (temp_register) { /* If this register is implemented */ in configure_new_function()
2773 if ((temp_register & 0x03L) == 0x01) { in configure_new_function()
2777 base = temp_register & 0xFFFFFFFC; in configure_new_function()
2792 } else if ((temp_register & 0x0BL) == 0x08) { in configure_new_function()
2794 base = temp_register & 0xFFFFFFF0; in configure_new_function()
2808 } else if ((temp_register & 0x0BL) == 0x00) { in configure_new_function()
2810 base = temp_register & 0xFFFFFFF0; in configure_new_function()
2832 if ((temp_register & 0x07L) == 0x04) { in configure_new_function()