From a47ea7b90e0c35104b5d72511429bbd71d4508d1 Mon Sep 17 00:00:00 2001 From: Jeroen Ruigrok van der Werven Date: Wed, 8 Nov 2000 11:58:07 +0000 Subject: [PATCH] Fix typo's: UPGRADE_CPU_HW_CACHE -> CPU_UPGRADE_HW_CACHE --- sys/amd64/amd64/initcpu.c | 4 ++-- sys/i386/i386/initcpu.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/amd64/amd64/initcpu.c b/sys/amd64/amd64/initcpu.c index b9395bfc7f8..dbdd3d50266 100644 --- a/sys/amd64/amd64/initcpu.c +++ b/sys/amd64/amd64/initcpu.c @@ -558,7 +558,7 @@ initializecpu(void) * when need_pre_dma_flush = 1, use invd instruction after DMA * transfer when need_post_dma_flush = 1. If your CPU upgrade * product support hardware cache control, you can add - * UPGRADE_CPU_HW_CACHE option in your kernel configuration file. + * CPU_UPGRADE_HW_CACHE option in your kernel configuration file. * This option elminate unneeded cache flush instruction. */ if (strcmp(cpu_vendor, "CyrixInstead") == 0) { @@ -595,7 +595,7 @@ initializecpu(void) need_pre_dma_flush = 1; #endif } -#endif /* PC98 && !UPGRADE_CPU_HW_CACHE */ +#endif /* PC98 && !CPU_UPGRADE_HW_CACHE */ } #if defined(I586_CPU) && defined(CPU_WT_ALLOC) diff --git a/sys/i386/i386/initcpu.c b/sys/i386/i386/initcpu.c index b9395bfc7f8..dbdd3d50266 100644 --- a/sys/i386/i386/initcpu.c +++ b/sys/i386/i386/initcpu.c @@ -558,7 +558,7 @@ initializecpu(void) * when need_pre_dma_flush = 1, use invd instruction after DMA * transfer when need_post_dma_flush = 1. If your CPU upgrade * product support hardware cache control, you can add - * UPGRADE_CPU_HW_CACHE option in your kernel configuration file. + * CPU_UPGRADE_HW_CACHE option in your kernel configuration file. * This option elminate unneeded cache flush instruction. */ if (strcmp(cpu_vendor, "CyrixInstead") == 0) { @@ -595,7 +595,7 @@ initializecpu(void) need_pre_dma_flush = 1; #endif } -#endif /* PC98 && !UPGRADE_CPU_HW_CACHE */ +#endif /* PC98 && !CPU_UPGRADE_HW_CACHE */ } #if defined(I586_CPU) && defined(CPU_WT_ALLOC)