Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/powerpc/mpc6xx Add a missing return; after print th...



details:   https://anonhg.NetBSD.org/src/rev/a4cd18554a4b
branches:  trunk
changeset: 532906:a4cd18554a4b
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Jun 17 21:28:48 2002 +0000

description:
Add a missing return; after print the 745x cache size(s).

diffstat:

 sys/arch/powerpc/mpc6xx/cpu_subr.c |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r 581916d2548a -r a4cd18554a4b sys/arch/powerpc/mpc6xx/cpu_subr.c
--- a/sys/arch/powerpc/mpc6xx/cpu_subr.c        Mon Jun 17 21:08:56 2002 +0000
+++ b/sys/arch/powerpc/mpc6xx/cpu_subr.c        Mon Jun 17 21:28:48 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpu_subr.c,v 1.17 2002/06/11 22:24:35 kleink Exp $     */
+/*     $NetBSD: cpu_subr.c,v 1.18 2002/06/17 21:28:48 matt Exp $       */
 
 /*-
  * Copyright (c) 2001 Matt Thomas.
@@ -424,6 +424,7 @@
                                printf(", %cMB L3 backside cache",
                                   l3cr & L3CR_L3SIZ ? '2' : '1');
                        printf("\n");
+                       return;
                }
                switch (l2cr & L2CR_L2SIZ) {
                case L2SIZ_256K:



Home | Main Index | Thread Index | Old Index