diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-11-22 12:51:02 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-11-22 12:51:02 +0000 |
commit | 93b9902952820ab73064718556934e22fbd29260 (patch) | |
tree | cda5b8df4423fbc6dbdf5c5f0b17528861c44d61 /sys/arch/i386/include | |
parent | 3fdfcb3cde55fbbcda00115a7b72197bfae3ee90 (diff) |
bios gives 32bit units not paddr/psize; no func change
Diffstat (limited to 'sys/arch/i386/include')
-rw-r--r-- | sys/arch/i386/include/biosvar.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/i386/include/biosvar.h b/sys/arch/i386/include/biosvar.h index e6cfe1a57c6..dca4f99f7c5 100644 --- a/sys/arch/i386/include/biosvar.h +++ b/sys/arch/i386/include/biosvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: biosvar.h,v 1.44 2004/06/23 00:21:49 tom Exp $ */ +/* $OpenBSD: biosvar.h,v 1.45 2005/11/22 12:51:01 mickey Exp $ */ /* * Copyright (c) 1997-1999 Michael Shalayeff @@ -88,15 +88,15 @@ struct bios32_header { typedef struct bios32_entry_info { - paddr_t bei_base; - psize_t bei_size; - paddr_t bei_entry; + u_int32_t bei_base; + u_int32_t bei_size; + u_int32_t bei_entry; } *bios32_entry_info_t; typedef struct bios32_entry { - u_int32_t offset; - u_int16_t segment; + u_int32_t offset; + u_int16_t segment; } *bios32_entry_t; #define BIOS32_START 0xe0000 |