Home | History | Annotate | Download | only in pci

Lines Matching defs:elcr

282 	uint8_t elcr;
290 elcr = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, off);
291 if (elcr & (1 << bit))
304 uint8_t elcr;
312 elcr = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, off);
314 elcr |= (1 << bit);
316 elcr &= ~(1 << bit);
317 bus_space_write_1(ph->ph_iot, ph->ph_elcr_ioh, off, elcr);
328 uint8_t elcr[2];
330 elcr[0] = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, 0);
331 elcr[1] = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, 1);
346 printf(" %c", (elcr[(i & 8) ? 1 : 0] & (1 << (i & 7))) ?