• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pci/hotplug/

Lines Matching refs:temp_word

64 	u16 temp_word;
91 temp_word = ctrl->ctrl_int_comp >> 16;
92 func->presence_save = (temp_word >> hp_slot) & 0x01;
93 func->presence_save |= (temp_word >> (hp_slot + 7)) & 0x02;
139 u16 temp_word;
175 temp_word = ctrl->ctrl_int_comp >> 16;
176 temp_byte = (temp_word >> hp_slot) & 0x01;
177 temp_byte |= (temp_word >> (hp_slot + 7)) & 0x02;
208 temp_word = ctrl->ctrl_int_comp >> 16;
209 func->presence_save = (temp_word >> hp_slot) & 0x01;
210 func->presence_save |= (temp_word >> (hp_slot + 7)) & 0x02;
1974 u16 temp_word;
2012 temp_word = ctrl->ctrl_int_comp >> 16;
2013 func->presence_save = (temp_word >> hp_slot) & 0x01;
2014 func->presence_save |= (temp_word >> (hp_slot + 7)) & 0x02;
2042 temp_word = ctrl->ctrl_int_comp >> 16;
2043 func->presence_save = (temp_word >> hp_slot) & 0x01;
2045 (temp_word >> (hp_slot + 7)) & 0x02;
2360 u16 temp_word;
2527 temp_word = mem_node->base >> 16;
2528 rc = pci_bus_write_config_word(pci_bus, devfn, PCI_MEMORY_BASE, temp_word);
2530 temp_word = (mem_node->base + mem_node->length - 1) >> 16;
2531 rc = pci_bus_write_config_word(pci_bus, devfn, PCI_MEMORY_LIMIT, temp_word);
2533 temp_word = 0xFFFF;
2534 rc = pci_bus_write_config_word(pci_bus, devfn, PCI_MEMORY_BASE, temp_word);
2536 temp_word = 0x0000;
2537 rc = pci_bus_write_config_word(pci_bus, devfn, PCI_MEMORY_LIMIT, temp_word);
2547 temp_word = p_mem_node->base >> 16;
2548 rc = pci_bus_write_config_word (pci_bus, devfn, PCI_PREF_MEMORY_BASE, temp_word);
2550 temp_word = (p_mem_node->base + p_mem_node->length - 1) >> 16;
2551 rc = pci_bus_write_config_word (pci_bus, devfn, PCI_PREF_MEMORY_LIMIT, temp_word);
2665 temp_word = 0x0000;
2666 rc = pci_bus_write_config_word (pci_bus, devfn, PCI_IO_LIMIT, temp_word);
2691 temp_word = (hold_mem_node->base) >> 16;
2692 rc = pci_bus_write_config_word (pci_bus, devfn, PCI_MEMORY_BASE, temp_word);
2710 temp_word = (mem_node->base - 1) >> 16;
2711 rc = pci_bus_write_config_word (pci_bus, devfn, PCI_MEMORY_LIMIT, temp_word);
2717 temp_word = 0x0000;
2718 rc = pci_bus_write_config_word (pci_bus, devfn, PCI_MEMORY_LIMIT, temp_word);
2743 temp_word = (hold_p_mem_node->base) >> 16;
2744 rc = pci_bus_write_config_word (pci_bus, devfn, PCI_PREF_MEMORY_BASE, temp_word);
2762 temp_word = (p_mem_node->base - 1) >> 16;
2763 rc = pci_bus_write_config_word (pci_bus, devfn, PCI_PREF_MEMORY_LIMIT, temp_word);
2768 temp_word = 0x0000;
2769 rc = pci_bus_write_config_word (pci_bus, devfn, PCI_PREF_MEMORY_LIMIT, temp_word);
2966 temp_word = 0x0157; /* = PCI_COMMAND_IO |
2973 PCI_COMMAND, temp_word);