• Home
  • Raw
  • Download

Lines Matching refs:temp_register

1410 	u32 temp_register = 0xFFFFFFFF;  in board_added()  local
1498 temp_register = 0xFFFFFFFF; in board_added()
1499 dbg("%s: temp register set to %x by power fault\n", __func__, temp_register); in board_added()
1505 …onfig_dword(ctrl->pci_bus, PCI_DEVFN(func->device, func->function), PCI_VENDOR_ID, &temp_register); in board_added()
1507 dbg("%s: temp_register is %x\n", __func__, temp_register); in board_added()
1511 temp_register = 0xFFFFFFFF; in board_added()
1512 dbg("%s: temp register set to %x by error\n", __func__, temp_register); in board_added()
1519 if (temp_register != 0xFFFFFFFF) { in board_added()
2319 u32 temp_register; in configure_new_function() local
2752 temp_register = 0xFFFFFFFF; in configure_new_function()
2755 rc = pci_bus_write_config_dword(pci_bus, devfn, cloop, temp_register); in configure_new_function()
2757 rc = pci_bus_read_config_dword(pci_bus, devfn, cloop, &temp_register); in configure_new_function()
2758 dbg("CND: base = 0x%x\n", temp_register); in configure_new_function()
2760 if (temp_register) { /* If this register is implemented */ in configure_new_function()
2761 if ((temp_register & 0x03L) == 0x01) { in configure_new_function()
2765 base = temp_register & 0xFFFFFFFC; in configure_new_function()
2780 } else if ((temp_register & 0x0BL) == 0x08) { in configure_new_function()
2782 base = temp_register & 0xFFFFFFF0; in configure_new_function()
2796 } else if ((temp_register & 0x0BL) == 0x00) { in configure_new_function()
2798 base = temp_register & 0xFFFFFFF0; in configure_new_function()
2820 if ((temp_register & 0x07L) == 0x04) { in configure_new_function()