Lines Matching defs:cyhc
101 cy82c693_read(const struct cy82c693_handle *cyhc, int reg)
105 KASSERT(cyhc != NULL);
110 bus_space_write_1(cyhc->cyhc_iot, cyhc->cyhc_ioh, 0, reg);
111 rv = bus_space_read_1(cyhc->cyhc_iot, cyhc->cyhc_ioh, 1);
119 cy82c693_write(const struct cy82c693_handle *cyhc, int reg, u_int8_t val)
122 KASSERT(cyhc != NULL);
127 bus_space_write_1(cyhc->cyhc_iot, cyhc->cyhc_ioh, 0, reg);
128 bus_space_write_1(cyhc->cyhc_iot, cyhc->cyhc_ioh, 1, val);