Lines Matching defs:bh
76 bus_space_handle_t bh = sc->sc_bsh;
86 bus_space_write_1(bt, bh, INTERSIL_ICMD, cmd);
89 (void)bus_space_read_1(bt, bh, INTERSIL_ICSEC); /* not used */
90 dt->dt_hour = bus_space_read_1(bt, bh, INTERSIL_IHOUR);
91 dt->dt_min = bus_space_read_1(bt, bh, INTERSIL_IMIN);
92 dt->dt_sec = bus_space_read_1(bt, bh, INTERSIL_ISEC);
93 dt->dt_mon = bus_space_read_1(bt, bh, INTERSIL_IMON);
94 dt->dt_day = bus_space_read_1(bt, bh, INTERSIL_IDAY);
95 year = bus_space_read_1(bt, bh, INTERSIL_IYEAR);
96 dt->dt_wday = bus_space_read_1(bt, bh, INTERSIL_IDOW);
100 bus_space_write_1(bt, bh, INTERSIL_ICMD, cmd);
121 bus_space_handle_t bh = sc->sc_bsh;
135 bus_space_write_1(bt, bh, INTERSIL_ICMD, cmd);
138 bus_space_write_1(bt, bh, INTERSIL_ICSEC, 0);
139 bus_space_write_1(bt, bh, INTERSIL_IHOUR, dt->dt_hour);
140 bus_space_write_1(bt, bh, INTERSIL_IMIN, dt->dt_min);
141 bus_space_write_1(bt, bh, INTERSIL_ISEC, dt->dt_sec);
142 bus_space_write_1(bt, bh, INTERSIL_IMON, dt->dt_mon);
143 bus_space_write_1(bt, bh, INTERSIL_IDAY, dt->dt_day);
144 bus_space_write_1(bt, bh, INTERSIL_IYEAR, year);
145 bus_space_write_1(bt, bh, INTERSIL_IDOW, dt->dt_wday);
149 bus_space_write_1(bt, bh, INTERSIL_ICMD, cmd);