diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1998-09-17 09:38:36 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1998-09-17 09:38:36 +0000 |
| commit | 9604f809cd4b3f29586f50108454c416160371f9 (patch) | |
| tree | 3ee90cd3378cc7c801f118da0503ec9a9968455a /sys/alpha/include/pc/bios.h | |
| parent | 888aeaaa72fc5f7d570fe8d6dd4a0629fb51fb98 (diff) | |
Notes
Diffstat (limited to 'sys/alpha/include/pc/bios.h')
| -rw-r--r-- | sys/alpha/include/pc/bios.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/alpha/include/pc/bios.h b/sys/alpha/include/pc/bios.h index 6e136923bbe7..5da68ea44b89 100644 --- a/sys/alpha/include/pc/bios.h +++ b/sys/alpha/include/pc/bios.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: bios.h,v 1.3 1998/08/06 09:15:54 dfr Exp $ * from: i386/include/pc bios.h,v 1.2 */ @@ -71,9 +71,13 @@ struct bios32_args { }; extern void bios32(caddr_t func_addr, struct bios32_args *args); +#if 0 #define BIOS_PADDRTOVADDR(x) (((x) - ISA_HOLE_START) + atdevbase) #define BIOS_VADDRTOPADDR(x) (((x) - atdevbase) + ISA_HOLE_START) - +#else +#define BIOS_PADDRTOVADDR(x) (x) +#define BIOS_VADDRTOPADDR(x) (x) +#endif /* * System Management BIOS / Desktop Management Interface tables |
