summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorkato <kato@FreeBSD.org>1997-01-04 06:48:28 +0000
committerkato <kato@FreeBSD.org>1997-01-04 06:48:28 +0000
commit75697c25bc61c91b5809c10e662dbe37cc7b00e4 (patch)
treed9f75d585456d587751ace600917084dd4ca7394 /sys
parentdf619e7f168046e843b1ba308d086768783bf347 (diff)
downloadFreeBSD-src-75697c25bc61c91b5809c10e662dbe37cc7b00e4.zip
FreeBSD-src-75697c25bc61c91b5809c10e662dbe37cc7b00e4.tar.gz
Staticize dma_bouncebuf. This variable was kept global because sbic
driver used it. The sbic driver has been obsoleted now, so the variable can be static as that in isa.c. This is a 2.2 candidate.
Diffstat (limited to 'sys')
-rw-r--r--sys/pc98/pc98/pc98.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pc98/pc98/pc98.c b/sys/pc98/pc98/pc98.c
index 1fff386..899e924 100644
--- a/sys/pc98/pc98/pc98.c
+++ b/sys/pc98/pc98/pc98.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
- * $Id: pc98.c,v 1.12 1996/12/27 13:06:31 kato Exp $
+ * $Id: pc98.c,v 1.13 1997/01/03 07:45:41 kato Exp $
*/
/*
@@ -555,10 +555,10 @@ isa_defaultirq()
}
#ifdef PC98
-caddr_t dma_bouncebuf[4];
+static caddr_t dma_bouncebuf[4];
static u_int dma_bouncebufsize[4];
#else
-caddr_t dma_bouncebuf[8];
+static caddr_t dma_bouncebuf[8];
static u_int dma_bouncebufsize[8];
#endif
static u_int8_t dma_bounced = 0;
OpenPOWER on IntegriCloud