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

  /src/sys/arch/newsmips/stand/boot/
promdev.h 3 int devtype; member in struct:romdev
  /src/sys/arch/arc/stand/boot/
devopen.c 49 char devtype[16]; local in function:devopen
73 strcpy(devtype, "disk");
104 strcpy(devtype, "disk");
106 strcpy(devtype, "disk");
121 printf("devopen: %s type %s file %s\n", namebuf, devtype, cp);
126 if (dp->dv_name && strcmp(devtype, dp->dv_name) == 0)
128 printf("Unknown device '%s'\nKnown devices are:", devtype);
  /src/sys/arch/sgimips/stand/common/
devopen.c 52 char devtype[16]; local in function:devopen
82 strcpy(devtype, "scsi");
84 strcpy(devtype, "dksc");
99 printf("devopen: %s type %s file %s\n", namebuf, devtype, cp);
104 if (dp->dv_name && strcmp(devtype, dp->dv_name) == 0)
106 printf("Unknown device '%s'\nKnown devices are:", devtype);
  /src/sys/arch/sparc/stand/common/
promdev.h 37 int devtype; /* Kind of device we're booting from */ member in struct:promdata
  /src/usr.sbin/btattach/
btattach.h 33 struct devtype { struct
  /src/sys/arch/hp300/dev/
sti_dio.c 132 int devtype; local in function:sti_dio_probe
157 devtype = bus_space_read_1(bst, bsh, 3);
160 if (devtype != STI_DEVTYPE1 && devtype != STI_DEVTYPE4)
sti_sgc.c 119 int devtype; local in function:sti_sgc_probe
125 devtype = bus_space_read_1(iot, ioh, 3);
135 if (devtype != STI_DEVTYPE1 && devtype != STI_DEVTYPE4)
147 int devtype, rv = 0; local in function:sti_sgc_cnprobe
157 devtype = bus_space_read_1(bst, romh, 3);
158 if (devtype == STI_DEVTYPE1 || devtype == STI_DEVTYPE4)
  /src/sys/arch/mvme68k/stand/netboot/
config.h 58 u_short devtype; member in struct:brdid
  /src/sys/arch/ofppc/stand/ofwboot/
ofdev.c 70 char devtype[16]; local in function:filename
73 devtype[0] = 0;
93 if (!strcmp(devtype, "block")) {
115 if (OF_getprop(dhandle, "device_type", devtype,
116 sizeof devtype) < 0)
117 devtype[0] = 0;
  /src/sys/arch/shark/stand/ofwboot/
ofdev.c 69 char devtype[16]; local in function:filename
72 devtype[0] = 0;
85 if (!strcmp(devtype, "block")) {
98 } else if (OF_getprop(dhandle, "device_type", devtype, sizeof devtype) < 0)
99 devtype[0] = 0;
  /src/sys/dev/pci/
ppb.c 121 int off, capversion, devtype; local in function:ppb_print_pcie
128 devtype = PCIE_XCAP_TYPE(reg);
142 switch (devtype) {
165 aprint_normal("Device/Port Type %x", devtype);
169 switch (devtype) {
pci.c 964 unsigned int devtype; local in function:pci_conf_capture
966 devtype = PCIE_XCAP_TYPE(xcap);
969 if (PCIE_HAS_LINKREGS(devtype))
977 if (PCIE_HAS_ROOTREGS(devtype))
985 if (PCIE_HAS_LINKREGS(devtype))
1043 unsigned int devtype; local in function:pci_conf_restore
1045 devtype = PCIE_XCAP_TYPE(xcap);
1052 if (PCIE_HAS_LINKREGS(devtype))
1058 if (PCIE_HAS_ROOTREGS(devtype))
1064 if (PCIE_HAS_LINKREGS(devtype))
    [all...]
  /src/sys/arch/hppa/dev/
sti_sgc.c 159 u_char devtype; local in function:sti_sgc_probe
191 devtype = bus_space_read_1(ca->ca_iot, romh, 3);
193 DPRINTF(("%s: devtype=%d\n", __func__, devtype));
195 switch (devtype) {
210 DPRINTF(("%s: unknown type (%x)\n", __func__, devtype));
hyperfb.c 251 u_char devtype; local in function:hyperfb_match
283 devtype = bus_space_read_1(ca->ca_iot, romh, 3);
284 DPRINTF("%s: devtype=%d\n", __func__, devtype);
286 switch (devtype) {
301 DPRINTF("%s: unknown type (%x)\n", __func__, devtype);
  /src/sys/arch/sparc/stand/ofwboot/
ofdev.c 80 char devtype[16]; local in function:filename
83 devtype[0] = 0;
100 if (strcmp(devtype, "block") == 0
101 || strcmp(devtype, "scsi") == 0) {
128 } else if (_prom_getprop(dhandle, "device_type", devtype,
129 sizeof devtype) < 0)
130 devtype[0] = 0;
  /src/usr.bin/eject/
eject.c 130 int devtype; local in function:main
135 devtype = -1;
169 devtype = devtypes[n].type;
173 if (devtype == -1)
198 if (devtype == -1)
199 devtype = guess_devtype(dev_name);
200 if (devtype == -1)
204 if ((devtype & TYPEMASK) == TAPE)
213 if ((devtype & TYPEMASK) == TAPE)
  /src/sys/arch/macppc/stand/ofwboot/
ofdev.c 300 char devtype[16]; local in function:parsefilepath
304 devtype[0] = '\0';
331 if (OF_getprop(dhandle, "device_type", devtype,
332 sizeof devtype) < 0)
333 devtype[0] = '\0';
343 if (strcmp(devtype, "block") == 0) {
  /src/sys/arch/sparc64/dev/
pci_machdep.c 415 char devtype[30]; local in function:pci_intr_map
442 prom_getpropstringA(node, "device_type", devtype, sizeof(devtype));
444 if (strcmp(intrmap[len].in_class, devtype) == 0) {
  /src/sys/compat/sunos/
sunos_ioctl.c 811 int devtype = SUNOS_AUDIO_DEV_AMD; local in function:sunos_sys_ioctl
812 error = copyout((void *)&devtype, SCARG(uap, data),
813 sizeof(devtype));
  /src/sys/compat/sunos32/
sunos32_ioctl.c 851 int devtype = SUNOS_AUDIO_DEV_AMD; local in function:sunos32_sys_ioctl
852 return copyout(&devtype, SCARG_P32(uap, data),
853 sizeof(devtype));
  /src/sys/arch/mvme68k/include/
prom.h 92 u_short devtype; member in struct:mvmeprom_brdid
  /src/sys/dev/ic/
sti.c 286 "devtype=%x, rev=%x;%d, altt=%x, gid=%08x%08x, font=%x, mss=%x\n"
815 int devtype; local in function:sti_rom_size
818 devtype = bus_space_read_1(memt, romh, 3);
819 if (devtype == STI_DEVTYPE4) {
  /src/sys/dev/usb/
mbim.h 383 uint32_t devtype; member in struct:mbim_cid_device_caps

Completed in 63 milliseconds