/src/sys/dev/ic/ |
am79c930var.h | 52 void (*write_2)(struct am79c930_softc *, u_int32_t, u_int16_t); member in struct:am79c930_ops
|
/src/sys/arch/hpcmips/vr/ |
vrc4172gpio.c | 118 static void write_2(struct vrc4172gpio_softc *, bus_addr_t, u_int16_t); 153 write_2(struct vrc4172gpio_softc *sc, bus_addr_t off, u_int16_t data) function in typeref:typename:void 172 write_2(sc, off, data & 0xffff); 173 write_2(sc, off + VRC2_EXGP_OFFSET, (data>>16)&0xffff); 279 write_2(sc, VRC2_EXGPINTEN, sc->sc_intr_mask); 289 write_2(sc, VRC2_EXGPINTLV0L, (data >> 0) & 0xff); 290 write_2(sc, VRC2_EXGPINTLV0H, (data >> 8) & 0xff); 291 write_2(sc, VRC2_EXGPINTLV1L, (data >> 16) & 0xff); 653 write_2(sc, VRC2_EXGPINTEN, sc->sc_intr_mask);
|
/src/sys/dev/nor/ |
nor.h | 114 void (*write_2) (device_t, flash_off_t, uint16_t); member in struct:nor_interface 222 KASSERT(sc->sc_nor_if->write_2 != NULL); 225 sc->sc_nor_if->write_2(sc->sc_controller_dev, offset, data);
|
/src/sys/dev/nand/ |
nand.h | 178 void (*write_2) (device_t, uint16_t); member in struct:nand_interface 292 KASSERT(sc->nand_if->write_2 != NULL); 295 sc->nand_if->write_2(sc->controller_dev, data);
|