Source-Changes-HG archive

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

[src/netbsd-1-5]: src/sys/arch/sh3/include pullup a part of rev. 1.5 (approve...



details:   https://anonhg.NetBSD.org/src/rev/76cddcee1e1e
branches:  netbsd-1-5
changeset: 489506:76cddcee1e1e
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Thu Sep 21 07:56:23 2000 +0000

description:
pullup a part of rev. 1.5 (approved by thorpej):

 access correct address in cacheflush().

diffstat:

 sys/arch/sh3/include/cpufunc.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r a1fadebe8c94 -r 76cddcee1e1e sys/arch/sh3/include/cpufunc.h
--- a/sys/arch/sh3/include/cpufunc.h    Thu Sep 21 07:53:59 2000 +0000
+++ b/sys/arch/sh3/include/cpufunc.h    Thu Sep 21 07:56:23 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpufunc.h,v 1.4 2000/02/24 23:32:27 msaitoh Exp $      */
+/*     $NetBSD: cpufunc.h,v 1.4.4.1 2000/09/21 07:56:23 msaitoh Exp $  */
 
 /*
  * Copyright (c) 1993 Charles Hannum.
@@ -82,7 +82,7 @@
 cacheflush(void)
 {
 #if 1
-       volatile int *p = (int *)0x88000000;
+       volatile int *p = (int *)ram_start;
        int i;
        int d;
 



Home | Main Index | Thread Index | Old Index