/src/sys/arch/sparc64/dev/ |
pckbc_ebus.c | 204 bus_space_handle_t hcmd, hdata; local in function:pckbc_ebus_attach 210 if (bus_space_map(iot, ioaddr + TADPMU_DATA, 1, 0, &hdata) != 0) { 211 bus_space_unmap(iot, hdata, 1); 215 tadpmu_init(iot, hcmd, hdata);
|
/src/sys/dev/i2c/ |
adm1021.c | 503 int8_t hdata = 0x7f, ldata = 0xc9; local in function:admtemp_getlim_1021 515 if (admtemp_exec(sc, I2C_OP_READ_WITH_STOP, &cmd, &hdata) == 0 && 516 hdata != ADMTEMP_LIM_INVAL) { 517 limits->sel_critmax = 273150000 + 1000000 * hdata; 542 sc->sc_highlim[edata->sensor] = hdata; 553 int8_t hdata = 0x7f, ldata = 0xc9; local in function:admtemp_getlim_1023 565 if (admtemp_exec(sc, I2C_OP_READ_WITH_STOP, &cmd, &hdata) == 0 && 566 hdata != ADMTEMP_LIM_INVAL) { 567 limits->sel_critmax = 273150000 + 1000000 * hdata; 603 sc->sc_highlim[edata->sensor] = hdata; 618 int8_t tdata = 0x55, hdata = 0x55, ldata = 0; local in function:admtemp_getlim_1032 [all...] |
/src/usr.bin/usbhidctl/ |
usbhid.c | 629 struct hid_data *hdata; local in function:devloop 656 hdata = hid_start_parse(rd, 1 << hid_input, reportid); 657 if (hdata == NULL) 660 while (hid_get_item(hdata, &hitem)) { 692 hid_end_parse(hdata); 702 struct hid_data *hdata; local in function:devshow 719 hdata = hid_start_parse(rd, kindset, reportid); 720 if (hdata == NULL) 723 while (hid_get_item(hdata, &hitem)) { 781 hid_end_parse(hdata); [all...] |