diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-07-15 17:15:33 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-07-15 17:15:33 +0000 |
commit | e4b17b8efdc5d9ea38e4c8ae422c4220b7c0013a (patch) | |
tree | 0640736305707b8a71f19608cce06fb1e3f803f0 /sys/arch | |
parent | 574757f246510310a314d1de8cc9917038b046b7 (diff) |
model and revision were swappedplaces in the struct
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/include/pdc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/pdc.h b/sys/arch/hppa/include/pdc.h index d8b1a3c9626..cf54f7a5ce8 100644 --- a/sys/arch/hppa/include/pdc.h +++ b/sys/arch/hppa/include/pdc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pdc.h,v 1.24 2003/04/30 23:03:55 mickey Exp $ */ +/* $OpenBSD: pdc.h,v 1.25 2003/07/15 17:15:32 mickey Exp $ */ /* * Copyright (c) 1990 mt Xinu, Inc. All rights reserved. @@ -405,8 +405,8 @@ struct pdc_coproc { /* PDC_COPROC */ u_int ccr_enable; /* same format as CCR (CR 10) */ u_int ccr_present; /* which co-proc's are present (bitset) */ u_int pad[15]; - u_int fpu_model; u_int fpu_revision; + u_int fpu_model; u_int filler2[13]; }; |