diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 1999-11-14 01:54:08 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 1999-11-14 01:54:08 +0000 |
| commit | 307f7791329ca4aa521736eb6e02a0e8c94dbdf7 (patch) | |
| tree | 9ac6fb5513b466ccca4ea035f5724fd34d332197 | |
| parent | 35f56d7e9af691f1d075d526ca940c6d36241767 (diff) | |
Notes
| -rw-r--r-- | sys/pc98/i386/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pc98/i386/machdep.c b/sys/pc98/i386/machdep.c index 01be9bdd1cab..9444f1a916f2 100644 --- a/sys/pc98/i386/machdep.c +++ b/sys/pc98/i386/machdep.c @@ -153,7 +153,7 @@ SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL) static MALLOC_DEFINE(M_MBUF, "mbuf", "mbuf"); #ifdef PC98 -int need_pre_dma_flush; /* If 1, use wbinvd befor DMA transfer. */ +int need_pre_dma_flush; /* If 1, use wbinvd befor DMA transfer. */ int need_post_dma_flush; /* If 1, use invd after DMA transfer. */ #endif @@ -169,9 +169,9 @@ SYSCTL_INT(_debug, OID_AUTO, tlb_flush_count, #endif #ifdef PC98 -int ispc98 = 1; +static int ispc98 = 1; #else -int ispc98 = 0; +static int ispc98 = 0; #endif SYSCTL_INT(_machdep, OID_AUTO, ispc98, CTLFLAG_RD, &ispc98, 0, ""); |
