diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2006-03-23 02:59:50 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-23 07:38:06 -0800 |
commit | 52f4a91afd9316fb4f0f3a77c5ff56b9c98632ea (patch) | |
tree | b3cd99d7c9474e50dfd819a3feba3ee3d93d9b44 /arch | |
parent | 382dbd07c9cb4f255c28f680996ad819a8ce9bfe (diff) | |
download | kernel-crypto-52f4a91afd9316fb4f0f3a77c5ff56b9c98632ea.tar.gz kernel-crypto-52f4a91afd9316fb4f0f3a77c5ff56b9c98632ea.tar.xz kernel-crypto-52f4a91afd9316fb4f0f3a77c5ff56b9c98632ea.zip |
[PATCH] Fix the imlicit declaration of mtrr_centaur_report_mcr in arch/i386/kernel/cpu/centaur.c
arch/i386/kernel/cpu/centaur.c: In function `centaur_mcr_insert':
arch/i386/kernel/cpu/centaur.c:33: warning: implicit declaration of function `mtrr_centaur_report_mcr'
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/kernel/cpu/centaur.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/i386/kernel/cpu/centaur.c b/arch/i386/kernel/cpu/centaur.c index f52669ecb93..bd75629dd26 100644 --- a/arch/i386/kernel/cpu/centaur.c +++ b/arch/i386/kernel/cpu/centaur.c @@ -4,6 +4,7 @@ #include <asm/processor.h> #include <asm/msr.h> #include <asm/e820.h> +#include <asm/mtrr.h> #include "cpu.h" #ifdef CONFIG_X86_OOSTORE |