aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/livepatch.h
diff options
context:
space:
mode:
authorJosh Poimboeuf <jpoimboe@redhat.com>2015-02-03 17:45:18 -0500
committerJiri Kosina <jkosina@suse.cz>2015-02-04 05:25:51 -0500
commit12cf89b550d13eb7cb86ef182bd6c04345a33a1f (patch)
tree1836f4d7130559031079b7b611a67127b304dc50 /include/linux/livepatch.h
parentdbed7ddab967550d1181633e8ac7905808f29a94 (diff)
livepatch: rename config to CONFIG_LIVEPATCH
Rename CONFIG_LIVE_PATCHING to CONFIG_LIVEPATCH to make the naming of the config and the code more consistent. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Reviewed-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include/linux/livepatch.h')
-rw-r--r--include/linux/livepatch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h
index f14c6fb262b4..95023fd8b00d 100644
--- a/include/linux/livepatch.h
+++ b/include/linux/livepatch.h
@@ -24,7 +24,7 @@
24#include <linux/module.h> 24#include <linux/module.h>
25#include <linux/ftrace.h> 25#include <linux/ftrace.h>
26 26
27#if IS_ENABLED(CONFIG_LIVE_PATCHING) 27#if IS_ENABLED(CONFIG_LIVEPATCH)
28 28
29#include <asm/livepatch.h> 29#include <asm/livepatch.h>
30 30
@@ -128,6 +128,6 @@ extern int klp_unregister_patch(struct klp_patch *);
128extern int klp_enable_patch(struct klp_patch *); 128extern int klp_enable_patch(struct klp_patch *);
129extern int klp_disable_patch(struct klp_patch *); 129extern int klp_disable_patch(struct klp_patch *);
130 130
131#endif /* CONFIG_LIVE_PATCHING */ 131#endif /* CONFIG_LIVEPATCH */
132 132
133#endif /* _LINUX_LIVEPATCH_H_ */ 133#endif /* _LINUX_LIVEPATCH_H_ */