Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30343d6c authored by Kirill Smelkov's avatar Kirill Smelkov Committed by Linus Torvalds
Browse files

[PATCH] x86: compile fix for asm-i386/alternatives.h



compile fix:  <asm-i386/alternative.h>  needs  <asm/types.h> for 'u8' --
just look at struct alt_instr.

My module includes <asm/bitops.h> as the first header, and as of 2.6.17 this
leads to compilation errors.

Signed-off-by: default avatarKirill Smelkov <kirr@mns.spb.ru>
Cc: <stable@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 224f611c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,8 @@

#ifdef __KERNEL__

#include <asm/types.h>

struct alt_instr {
	u8 *instr; 		/* original instruction */
	u8 *replacement;