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

  /src/sys/arch/evbarm/stand/boot2440/
netif.c 43 extern struct btinfo_rootdevice bi_rdev;
82 snprintf(bi_rdev.devname, sizeof(bi_rdev.devname), "%s", dv->name);
83 bi_rdev.cookie = tag;
116 snprintf(bi_rdev.devname, sizeof(bi_rdev.devname), "%s", dv->name);
117 bi_rdev.cookie = tag;
devopen.c 70 extern struct btinfo_rootdevice bi_rdev;
112 snprintf(bi_rdev.devname, sizeof(bi_rdev.devname), "ld");
113 bi_rdev.cookie = unit;
114 bi_rdev.partition = part;
main.c 102 struct btinfo_rootdevice bi_rdev; variable in typeref:struct:btinfo_rootdevice
258 bi_add(&bi_rdev, BTINFO_ROOTDEVICE, sizeof(bi_rdev));
  /src/sys/arch/sandpoint/sandpoint/
autoconf.c 57 static struct btinfo_rootdevice *bi_rdev; variable in typeref:struct:btinfo_rootdevice *
186 bi_rdev = lookup_bootinfo(BTINFO_ROOTDEVICE);
220 if (bi_rdev != NULL && bi_rdev->cookie == pa->pa_tag) {
240 if (bi_rdev != NULL && device_is_a(dev, bi_rdev->devname)
241 && bi_rdev->cookie == tag)
255 else if (bi_rdev != NULL && device_class(dev) == DV_DISK
256 && device_is_a(dev, bi_rdev->devname)
257 && device_unit(dev) == (bi_rdev->cookie >> 8))
    [all...]
  /src/sys/arch/sandpoint/stand/altboot/
nif.c 75 extern struct btinfo_rootdevice bi_rdev;
94 snprintf(bi_rdev.devname, sizeof(bi_rdev.devname), "%s", dv->name);
95 bi_rdev.cookie = tag;
dsk.c 491 extern struct btinfo_rootdevice bi_rdev;
525 snprintf(bi_rdev.devname, sizeof(bi_rdev.devname), "wd");
526 bi_rdev.cookie = (d->unittag << 8) | d->part;
main.c 81 struct btinfo_rootdevice bi_rdev; variable in typeref:struct:btinfo_rootdevice
366 bi_add(&bi_rdev, BTINFO_ROOTDEVICE, sizeof(bi_rdev));
  /src/sys/arch/evbarm/mini2440/
mini2440_machdep.c 219 struct btinfo_rootdevice *bi_rdev; variable in typeref:struct:btinfo_rootdevice *
495 bi_rdev = lookup_bootinfo(BTINFO_ROOTDEVICE);
1075 if (bi_rdev != NULL && device_is_a(dev, bi_rdev->devname) ) {
1093 if (bi_rdev != NULL && device_class(dev) == DV_DISK
1094 && device_is_a(dev, bi_rdev->devname)
1095 && device_unit(dev) == bi_rdev->cookie) {
1097 booted_partition = bi_rdev->partition;

Completed in 44 milliseconds