diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-11-21 03:59:17 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-11-21 03:59:17 +0000 |
commit | d74e0cb5802353bb2e293334a75acee3bb716894 (patch) | |
tree | 3ed80b9600d6a9ee089d8f24703bbd6150791413 | |
parent | 8a2c5dd930b14ae2d9a2573ee81d9746ed9627d9 (diff) |
MID_MACHINE should not be 0 (MID_ZERO) but MID_POWERPC,
not used in kernel anyway. pointed out by art@
-rw-r--r-- | sys/arch/powerpc/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/param.h b/sys/arch/powerpc/include/param.h index c76b3805e13..1ef45e2f761 100644 --- a/sys/arch/powerpc/include/param.h +++ b/sys/arch/powerpc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.21 2002/03/21 02:08:40 drahn Exp $ */ +/* $OpenBSD: param.h,v 1.22 2002/11/21 03:59:16 drahn Exp $ */ /* $NetBSD: param.h,v 1.1 1996/09/30 16:34:28 ws Exp $ */ /*- @@ -47,7 +47,7 @@ #define MACHINE_ARCH "powerpc" #define _MACHINE_ARCH powerpc -#define MID_MACHINE 0 /* None but has to be defined */ +#define MID_MACHINE MID_POWERPC #define ALIGNBYTES (sizeof(double) - 1) #define ALIGN(p) (((u_int)(p) + ALIGNBYTES) & ~ALIGNBYTES) |