diff options
author | Toomas Soome <tsoome@me.com> | 2018-03-13 10:06:12 +0200 |
---|---|---|
committer | Dan McDonald <danmcd@joyent.com> | 2018-05-14 13:39:16 -0400 |
commit | 3e8bfa75f73c9b5453b9ac29c9febcf211f061be (patch) | |
tree | 0214cadc471a7620f666961eeab5411781210888 | |
parent | 37367bbad5a7ff7127e57468cb6088cfca4bbd22 (diff) | |
download | illumos-joyent-3e8bfa75f73c9b5453b9ac29c9febcf211f061be.tar.gz |
9274 loader: Make struct libi386_devdesc match the struct devdesc better
Reviewed by: Yuri Pankov <yuripv@yuripv.net>
Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk>
Approved by: Dan McDonald <danmcd@joyent.com>
-rw-r--r-- | usr/src/boot/sys/boot/i386/libi386/libi386.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr/src/boot/sys/boot/i386/libi386/libi386.h b/usr/src/boot/sys/boot/i386/libi386/libi386.h index 65bbd9b5d8..f5106bd8f5 100644 --- a/usr/src/boot/sys/boot/i386/libi386/libi386.h +++ b/usr/src/boot/sys/boot/i386/libi386/libi386.h @@ -37,22 +37,17 @@ struct i386_devdesc { struct devsw *d_dev; int d_type; int d_unit; + void *d_opendata; union { struct { - void *data; int slice; int partition; off_t offset; } biosdisk; struct { - void *data; - } bioscd; - struct - { - void *data; uint64_t pool_guid; uint64_t root_guid; } zfs; |