From 103b08ffa17173eebff7b6a0ed753abba0d078d2 Mon Sep 17 00:00:00 2001 From: uch Date: Sun, 22 Apr 2001 17:37:55 +0000 Subject: [PATCH] make this compile again under SH4 --- sys/arch/sh3/include/pmap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/sh3/include/pmap.h b/sys/arch/sh3/include/pmap.h index 872eff599467..f8b4832d9524 100644 --- a/sys/arch/sh3/include/pmap.h +++ b/sys/arch/sh3/include/pmap.h @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.h,v 1.10 2001/04/22 00:34:02 thorpej Exp $ */ +/* $NetBSD: pmap.h,v 1.11 2001/04/22 17:37:55 uch Exp $ */ /* * Copyright (c) 1997 Charles D. Cranor and Washington University. @@ -361,7 +361,7 @@ extern int pmap_pg_g; /* do we support PG_G? */ /* XXX XXX XXX */ #ifdef SH4 -#define TLBFLUSH() ((cacheflush(), tlbflush()) +#define TLBFLUSH() (cacheflush(), tlbflush()) #else #define TLBFLUSH() tlbflush() #endif