diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-01-25 21:25:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-01-25 21:25:56 +0000 |
commit | fcc83058b716150011bab40c8227c8fe8a0f16d9 (patch) | |
tree | 395ef5beb5d179885ee7d6d975630d0311a177d2 /sys | |
parent | 9a1200866418025a00cf324b402990bc73d69d3b (diff) |
define CONADDR and CONUNIT
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/include/param.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/param.h b/sys/arch/hppa/include/param.h index 8392d7de823..0148b780205 100644 --- a/sys/arch/hppa/include/param.h +++ b/sys/arch/hppa/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.15 2002/01/10 01:26:49 mickey Exp $ */ +/* $OpenBSD: param.h,v 1.16 2002/01/25 21:25:55 mickey Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -136,4 +136,10 @@ #define HPMMBASEADDR(v) ((unsigned)(v) & ~HPMMMASK) #endif +#ifndef _LOCORE +#define CONADDR conaddr +#define CONUNIT conunit +extern hppa_hpa_t conaddr; +extern int conunit; +#endif #endif |