diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-08-02 14:38:43 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-08-02 14:38:43 +0000 |
commit | f20e35aa3539cce62847eeb93380ffd8bbe1a0d1 (patch) | |
tree | 14729511976e467486e5dbe1c865fd4b2ed8d0a7 /sys/arch/mvme88k/include | |
parent | 8dc0e770f13b570c542155aad03edc992c9e8fd7 (diff) |
Fun with the BUG:
- add the board's suffix to the machine description if there is one;
- recognize BUG version < 5 on MVME188, which don't provide a CNFG block.
in this case we'll assume 20MHz for now, until we can parse the ENV data block
correctly...
Diffstat (limited to 'sys/arch/mvme88k/include')
-rw-r--r-- | sys/arch/mvme88k/include/prom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/prom.h b/sys/arch/mvme88k/include/prom.h index 8f8f7b3ab2f..62b97c577b2 100644 --- a/sys/arch/mvme88k/include/prom.h +++ b/sys/arch/mvme88k/include/prom.h @@ -1,4 +1,4 @@ -/* $OpenBSD: prom.h,v 1.13 2004/01/26 19:24:03 miod Exp $ */ +/* $OpenBSD: prom.h,v 1.14 2004/08/02 14:38:40 miod Exp $ */ /* * Copyright (c) 1998 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -112,7 +112,7 @@ struct mvmeprom_brdid { u_short size; u_short rsv1; u_short model; - u_short suffix; + u_char suffix[2]; u_short options; u_char family; u_char cpu; |