Skip to content

Commit

Permalink
klp: remove superfluous errors in asm/livepatch.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Miroslav Benes authored and Jiri Kosina committed Mar 6, 2016
1 parent 705d43d commit b24b78a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions arch/s390/include/asm/livepatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 0 additions & 2 deletions arch/x86/include/asm/livepatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

0 comments on commit b24b78a

Please sign in to comment.