klp: remove superfluous errors in asm/livepatch.h
authorMiroslav Benes <mbenes@suse.cz>
Fri, 4 Mar 2016 09:53:39 +0000 (10:53 +0100)
committerJiri Kosina <jkosina@suse.cz>
Sun, 6 Mar 2016 21:19:26 +0000 (22:19 +0100)
There is an #error in asm/livepatch.h for both x86 and s390 in
!CONFIG_LIVEPATCH cases. It does not make much sense as pointed out by
Michael Ellerman. One can happily include asm/livepatch.h with
CONFIG_LIVEPATCH. Remove it as useless.

Suggested-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Miroslav Benes <mbenes@suse.cz>
Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
arch/s390/include/asm/livepatch.h
arch/x86/include/asm/livepatch.h

index a52b6cc..1050745 100644 (file)
@@ -36,8 +36,6 @@ static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
 {
        regs->psw.addr = ip;
 }
-#else
-#error Include linux/livepatch.h, not asm/livepatch.h
 #endif
 
 #endif
index e795f52..8acfe79 100644 (file)
@@ -40,8 +40,6 @@ static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
 {
        regs->ip = ip;
 }
-#else
-#error Include linux/livepatch.h, not asm/livepatch.h
 #endif
 
 #endif /* _ASM_X86_LIVEPATCH_H */