diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-11-07 00:58:35 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 07:53:29 -0800 |
commit | 8d1ed6366b9f3cb54eb5aef5dae79b39b8d5ce43 (patch) | |
tree | 61473905fcbebf0895c9dca8ba784d678ad369b7 /arch/i386 | |
parent | 77f72b192fd4624ad639dbf60c48be787c8aea59 (diff) | |
download | op-kernel-dev-8d1ed6366b9f3cb54eb5aef5dae79b39b8d5ce43.zip op-kernel-dev-8d1ed6366b9f3cb54eb5aef5dae79b39b8d5ce43.tar.gz |
[PATCH] arch/i386/kernel/ldt.c should #include <asm/mmu_context.h>
Every file should #include the header files containing the prototypes of
its global functions
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/ldt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/i386/kernel/ldt.c b/arch/i386/kernel/ldt.c index fe1ffa5..983f957 100644 --- a/arch/i386/kernel/ldt.c +++ b/arch/i386/kernel/ldt.c @@ -18,6 +18,7 @@ #include <asm/system.h> #include <asm/ldt.h> #include <asm/desc.h> +#include <asm/mmu_context.h> #ifdef CONFIG_SMP /* avoids "defined but not used" warnig */ static void flush_ldt(void *null) |