Commit 6223f27d authored by Paolo \'Blaisorblade\' Giarrusso's avatar Paolo \'Blaisorblade\' Giarrusso Committed by Linus Torvalds

[PATCH] uml: cleanup header names

Rename headers with the same name to avoid specifying the complete path for
including them.
Signed-off-by: default avatarPaolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 08f87ca1
...@@ -9,11 +9,11 @@ ...@@ -9,11 +9,11 @@
#include "uml-config.h" #include "uml-config.h"
#ifdef UML_CONFIG_MODE_TT #ifdef UML_CONFIG_MODE_TT
#include "../kernel/tt/include/mode.h" #include "mode-tt.h"
#endif #endif
#ifdef UML_CONFIG_MODE_SKAS #ifdef UML_CONFIG_MODE_SKAS
#include "../kernel/skas/include/mode.h" #include "mode-skas.h"
#endif #endif
#endif #endif
......
...@@ -9,11 +9,11 @@ ...@@ -9,11 +9,11 @@
#include "linux/config.h" #include "linux/config.h"
#ifdef CONFIG_MODE_TT #ifdef CONFIG_MODE_TT
#include "../kernel/tt/include/mode_kern.h" #include "mode_kern-tt.h"
#endif #endif
#ifdef CONFIG_MODE_SKAS #ifdef CONFIG_MODE_SKAS
#include "../kernel/skas/include/mode_kern.h" #include "mode_kern-skas.h"
#endif #endif
#endif #endif
......
...@@ -10,11 +10,11 @@ ...@@ -10,11 +10,11 @@
#include "choose-mode.h" #include "choose-mode.h"
#ifdef CONFIG_MODE_TT #ifdef CONFIG_MODE_TT
#include "../kernel/tt/include/mmu.h" #include "mmu-tt.h"
#endif #endif
#ifdef CONFIG_MODE_SKAS #ifdef CONFIG_MODE_SKAS
#include "../kernel/skas/include/mmu.h" #include "mmu-skas.h"
#endif #endif
typedef union { typedef union {
......
...@@ -10,11 +10,11 @@ ...@@ -10,11 +10,11 @@
#include "choose-mode.h" #include "choose-mode.h"
#ifdef CONFIG_MODE_TT #ifdef CONFIG_MODE_TT
#include "../kernel/tt/include/uaccess.h" #include "uaccess-tt.h"
#endif #endif
#ifdef CONFIG_MODE_SKAS #ifdef CONFIG_MODE_SKAS
#include "../kernel/skas/include/uaccess.h" #include "uaccess-skas.h"
#endif #endif
#define access_ok(type, addr, size) \ #define access_ok(type, addr, size) \
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#include "asm/mmu_context.h" #include "asm/mmu_context.h"
#include "tlb.h" #include "tlb.h"
#include "skas.h" #include "skas.h"
#include "mmu.h" #include "um_mmu.h"
#include "os.h" #include "os.h"
void flush_thread_skas(void) void flush_thread_skas(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment