diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-04-05 20:24:25 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-04-05 20:24:25 +0000 |
commit | fea29c93eead286ae4a5114147d4a5d998375761 (patch) | |
tree | d4f70c3a4bb63f3c5f00b02d51513b1d3c23d979 | |
parent | 8a16d5896d6711a702b864ef80e63a3077fe6c6d (diff) |
fpu_type -> fputype
-rw-r--r-- | sys/arch/sun3/sun3/fpu.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/sun3/sun3/fpu.c b/sys/arch/sun3/sun3/fpu.c index ecc408b1d36..652ec087d3d 100644 --- a/sys/arch/sun3/sun3/fpu.c +++ b/sys/arch/sun3/sun3/fpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fpu.c,v 1.6 1997/01/16 04:04:20 kstailey Exp $ */ +/* $OpenBSD: fpu.c,v 1.7 1997/04/05 20:24:24 kstailey Exp $ */ /* $NetBSD: fpu.c,v 1.9 1996/11/20 18:57:29 gwr Exp $ */ /*- @@ -80,15 +80,15 @@ initfpu() enab_reg |= SYSTEM_ENAB_FPP; set_control_byte((char *) SYSTEM_ENAB, enab_reg); - fpu_type = fpu_probe(); - if ((0 <= fpu_type) && (fpu_type <= 2)) - descr = fpu_descr[fpu_type]; + fputype = fpu_probe(); + if ((0 <= fputype) && (fputype <= 2)) + descr = fpu_descr[fputype]; else descr = "unknown type"; printf("fpu: %s\n", descr); - if (fpu_type == 0) { + if (fputype == 0) { /* Might as well turn the enable bit back off. */ enab_reg = get_control_byte((char *) SYSTEM_ENAB); enab_reg &= ~SYSTEM_ENAB_FPP; |