Home | History | Annotate | Download | only in pci

Lines Matching refs:newregs

50 	pcireg_t curregs, newregs;
52 newregs = curregs = pci_conf_read(pc, tag, SIIG10x_USR_BASE);
57 newregs &= ~SIIG10x_USR0_MASK;
60 newregs &= ~SIIG10x_USR1_MASK;
63 newregs &= ~SIIG10x_USR2_MASK;
66 newregs &= ~SIIG10x_USR3_MASK;
71 newregs |= SIIG10x_USR0_MASK;
74 newregs |= SIIG10x_USR1_MASK;
77 newregs |= SIIG10x_USR2_MASK;
80 newregs |= SIIG10x_USR3_MASK;
83 if (newregs != curregs)
84 pci_conf_write(pc, tag, SIIG10x_USR_BASE, newregs);