HomeSort by: relevance | last modified time | path
    Searched defs:old_cfg (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/alpha/pci/
cia_pci.c 62 uint32_t old_cfg, errbits; local in function:cia_conf_read
69 old_cfg = 0; /* XXX gcc -Wuninitialized */
91 old_cfg = REGVAL(CIA_CSR_CFG);
93 REGVAL(CIA_CSR_CFG) = old_cfg | 0x1;
127 REGVAL(CIA_CSR_CFG) = old_cfg;
160 uint32_t old_cfg; local in function:cia_conf_write
167 old_cfg = 0; /* XXX gcc -Wuninitialized */
174 old_cfg = REGVAL(CIA_CSR_CFG);
176 REGVAL(CIA_CSR_CFG) = old_cfg | 0x1;
208 REGVAL(CIA_CSR_CFG) = old_cfg;
    [all...]
  /src/sys/arch/arm/cortex/
gic.c 455 uint32_t old_cfg = (cfg >> twopair_shift) & __BITS(1, 0); local in function:armgic_establish_irq
456 if (is->is_type == IST_LEVEL && (old_cfg & __BIT(1)) != 0) {
458 } else if (is->is_type == IST_EDGE && (old_cfg & 2) == 0) {

Completed in 12 milliseconds