diff options
author | Miroslav Benes <mbenes@suse.cz> | 2015-01-20 06:49:35 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-01-20 09:02:25 -0500 |
commit | 32b7eb877165fdb29f1722071c6c64ced1789014 (patch) | |
tree | 0d48d9059e72a3521089de91da3e838f4465002c /kernel/livepatch | |
parent | 99590ba565a22c9f58f7528a94881d0455eef018 (diff) |
livepatch: change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING
Change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING in Kconfigs. HAVE_
bools are prevalent there and we should go with the flow.
Suggested-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Miroslav Benes <mbenes@suse.cz>
Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'kernel/livepatch')
-rw-r--r-- | kernel/livepatch/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/livepatch/Kconfig b/kernel/livepatch/Kconfig index 66797aa597c0..347ee2221137 100644 --- a/kernel/livepatch/Kconfig +++ b/kernel/livepatch/Kconfig | |||
@@ -1,4 +1,4 @@ | |||
1 | config ARCH_HAVE_LIVE_PATCHING | 1 | config HAVE_LIVE_PATCHING |
2 | bool | 2 | bool |
3 | help | 3 | help |
4 | Arch supports kernel live patching | 4 | Arch supports kernel live patching |
@@ -9,7 +9,7 @@ config LIVE_PATCHING | |||
9 | depends on MODULES | 9 | depends on MODULES |
10 | depends on SYSFS | 10 | depends on SYSFS |
11 | depends on KALLSYMS_ALL | 11 | depends on KALLSYMS_ALL |
12 | depends on ARCH_HAVE_LIVE_PATCHING | 12 | depends on HAVE_LIVE_PATCHING |
13 | help | 13 | help |
14 | Say Y here if you want to support kernel live patching. | 14 | Say Y here if you want to support kernel live patching. |
15 | This option has no runtime impact until a kernel "patch" | 15 | This option has no runtime impact until a kernel "patch" |