Lines Matching refs:unit
39 isa_hinted_child(device_t parent, const char *name, int unit) in isa_hinted_child() argument
47 if (resource_int_value(name, unit, "sensitive", &sensitive) != 0) in isa_hinted_child()
55 child = BUS_ADD_CHILD(parent, order, name, unit); in isa_hinted_child()
61 resource_int_value(name, unit, "port", &start); in isa_hinted_child()
62 resource_int_value(name, unit, "portsize", &count); in isa_hinted_child()
68 resource_int_value(name, unit, "maddr", &start); in isa_hinted_child()
69 resource_int_value(name, unit, "msize", &count); in isa_hinted_child()
73 if (resource_int_value(name, unit, "irq", &start) == 0 && start > 0) in isa_hinted_child()
76 if (resource_int_value(name, unit, "drq", &start) == 0 && start >= 0) in isa_hinted_child()
79 if (resource_disabled(name, unit)) in isa_hinted_child()
106 int line, matches, unit; in isa_hint_device_unit() local
110 if (resource_find_dev(&line, name, &unit, "at", NULL) != 0) in isa_hint_device_unit()
114 resource_string_value(name, unit, "at", &s); in isa_hint_device_unit()
129 if (resource_long_value(name, unit, "port", &value) == 0) { in isa_hint_device_unit()
150 if (resource_long_value(name, unit, "maddr", &value) == 0) { in isa_hint_device_unit()
159 if (resource_long_value(name, unit, "irq", &value) == 0) { in isa_hint_device_unit()
165 if (resource_long_value(name, unit, "drq", &value) == 0) { in isa_hint_device_unit()
175 *unitp = unit; in isa_hint_device_unit()