Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/pmax/pmax Get 2100/3100 model number correct (test ...



details:   https://anonhg.NetBSD.org/src/rev/31678ea59b63
branches:  trunk
changeset: 479830:31678ea59b63
user:      simonb <simonb%NetBSD.org@localhost>
date:      Wed Dec 22 22:10:07 1999 +0000

description:
Get 2100/3100 model number correct (test was reversed).  Bug report and
patch from Scott G. Akmentins-Taylor on port-pmax.

diffstat:

 sys/arch/pmax/pmax/dec_3100.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 9be1ae78bb83 -r 31678ea59b63 sys/arch/pmax/pmax/dec_3100.c
--- a/sys/arch/pmax/pmax/dec_3100.c     Wed Dec 22 21:59:49 1999 +0000
+++ b/sys/arch/pmax/pmax/dec_3100.c     Wed Dec 22 22:10:07 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dec_3100.c,v 1.18 1999/12/03 03:06:11 nisimura Exp $ */
+/* $NetBSD: dec_3100.c,v 1.19 1999/12/22 22:10:07 simonb Exp $ */
 
 /*
  * Copyright (c) 1998 Jonathan Stone.  All rights reserved.
@@ -134,7 +134,7 @@
        /* calibrate cpu_mhz value */
        mc_cpuspeed(MIPS_PHYS_TO_KSEG1(KN01_SYS_CLOCK), MIPS_INT_MASK_3);
 
-       sprintf(cpu_model, "DECstation %d100 (PMAX)", cpu_mhz < 15 ? 3 : 2);
+       sprintf(cpu_model, "DECstation %d100 (PMAX)", cpu_mhz < 15 ? 2 : 3);
 }
 
 /*



Home | Main Index | Thread Index | Old Index