tree 9cbee37b5b09ec12424e7324845f805ea6c7b404 parent 8afe07ce0003d4c63b7d76b6f28264503cb80d71 author Jeff Dike <[EMAIL PROTECTED]> Fri, 29 Jul 2005 11:16:05 -0700 committer Linus Torvalds <[EMAIL PROTECTED]> Fri, 29 Jul 2005 11:46:03 -0700
[PATCH] uml: vm86 compile fix We added an include of asm/vm86.h in include/asm-i386/ptrace.h. Since UML includes the underlying arch's ptrace.h, it needs an asm/vm86.h in order to build. Signed-off-by: Jeff Dike <[EMAIL PROTECTED]> Cc: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]> include/asm-um/vm86.h | 6 ++++++ 1 files changed, 6 insertions(+) diff --git a/include/asm-um/vm86.h b/include/asm-um/vm86.h new file mode 100644 --- /dev/null +++ b/include/asm-um/vm86.h @@ -0,0 +1,6 @@ +#ifndef __UM_VM86_H +#define __UM_VM86_H + +#include "asm/arch/vm86.h" + +#endif - To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
