HomeSort by: relevance | last modified time | path
    Searched defs:baa (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/arch/arm/broadcom/
bcm2835_mbox.c 88 struct bcmmbox_attach_args baa; local in function:bcmmbox_attach
104 baa.baa_dmat = sc->sc_dmat;
105 sc->sc_platdev = config_found(sc->sc_dev, &baa, NULL, CFARGS_NONE);
  /src/sys/arch/sparc/dev/
bootbus.c 121 struct bootbus_attach_args baa; local in function:bootbus_attach
123 if (bootbus_setup_attach_args(sc, sc->sc_bustag, node, &baa))
126 config_found(self, &baa, bootbus_print,
130 bootbus_destroy_attach_args(&baa);
137 struct bootbus_attach_args *baa = aux; local in function:bootbus_submatch
140 cf->cf_loc[BOOTBUSCF_SLOT] != baa->ba_slot)
144 cf->cf_loc[BOOTBUSCF_OFFSET] != baa->ba_offset)
153 struct bootbus_attach_args *baa = aux; local in function:bootbus_print
157 aprint_normal("%s at %s", baa->ba_name, pnp);
158 aprint_normal(" slot %d offset 0x%x", baa->ba_slot, baa->ba_offset)
    [all...]
zs.c 228 struct bootbus_attach_args *baa = aux; local in function:zs_match_bootbus
230 return (strcmp(cf->cf_name, baa->ba_name) == 0);
352 struct bootbus_attach_args *baa = aux; local in function:zs_attach_bootbus
357 if (baa->ba_nintr == 0) {
362 if (baa->ba_npromvaddrs > 0)
363 va = (void *) baa->ba_promvaddrs;
367 if (bus_space_map(baa->ba_bustag,
368 BUS_ADDR(baa->ba_slot, baa->ba_offset),
369 baa->ba_size, BUS_SPACE_MAP_LINEAR, &bh) != 0)
    [all...]
  /src/sys/arch/sparc/sparc/
mkclock.c 130 struct bootbus_attach_args *baa = aux; local in function:clockmatch_bootbus
132 return (strcmp("eeprom", baa->ba_name) == 0);
213 struct bootbus_attach_args *baa = aux; local in function:clockattach_bootbus
215 sc->sc_bst = baa->ba_bustag;
219 BUS_ADDR(baa->ba_reg[0].oa_space,
220 baa->ba_reg[0].oa_base),
221 baa->ba_reg[0].oa_size,
228 clockattach(sc, baa->ba_node);
  /src/sys/arch/macppc/dev/
battery.c 105 struct battery_attach_args *baa = aux; local in function:battery_match
107 if (baa->baa_type == BATTERY_TYPE_LEGACY)
116 struct battery_attach_args *baa = aux; local in function:battery_attach
121 sc->sc_pmu_ops = baa->baa_pmu_ops;
smartbat.c 108 struct battery_attach_args *baa = aux; local in function:smartbat_match
110 if (baa->baa_type == BATTERY_TYPE_SMART)
119 struct battery_attach_args *baa = aux; local in function:smartbat_attach
123 sc->sc_pmu_ops = baa->baa_pmu_ops;
124 sc->sc_num = baa->baa_num;
pmu.c 1101 struct battery_attach_args baa; local in function:pmu_attach_legacy_battery
1103 baa.baa_type = BATTERY_TYPE_LEGACY;
1104 baa.baa_pmu_ops = &sc->sc_pmu_ops;
1105 config_found(sc->sc_dev, &baa, pmu_print,
1112 struct battery_attach_args baa; local in function:pmu_attach_smart_battery
1114 baa.baa_type = BATTERY_TYPE_SMART;
1115 baa.baa_pmu_ops = &sc->sc_pmu_ops;
1116 baa.baa_num = num;
1117 config_found(sc->sc_dev, &baa, pmu_print,
  /src/sys/compat/linux/common/
linux_socket.c 1781 struct sys_accept_args baa; local in function:linux_sys_accept
1783 SCARG(&baa, s) = SCARG(uap, s);
1784 SCARG(&baa, name) = (struct sockaddr *) SCARG(uap, name);
1785 SCARG(&baa, anamelen) = (unsigned int *) SCARG(uap, anamelen);
1787 if ((error = sys_accept(l, &baa, retval)))

Completed in 16 milliseconds