Lines Matching refs:hconf
866 device_t hconf; in hmt_set_input_mode() local
872 hconf = hidbus_find_child(device_get_parent(sc->dev), in hmt_set_input_mode()
874 if (hconf == NULL) in hmt_set_input_mode()
878 if (device_is_alive(hconf) == 0) in hmt_set_input_mode()
879 device_probe_and_attach(hconf); in hmt_set_input_mode()
880 if (device_is_attached(hconf) == 0) in hmt_set_input_mode()
883 if (device_get_devclass(hconf) != hconf_devclass) in hmt_set_input_mode()
887 device_busy(hconf); in hmt_set_input_mode()
888 err = hconf_set_input_mode(hconf, mode); in hmt_set_input_mode()
889 device_unbusy(hconf); in hmt_set_input_mode()
911 MODULE_DEPEND(hmt, hconf, 1, 1, 1);