aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2014-10-30 05:00:35 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-07 14:07:35 -0500
commitcd3d9ea142c9fd47351e79fe30c7ae2c86302cda (patch)
treee086c8f948d527a6d8bf54a0ef0f173cf110dfb7
parent9c6026994c2a18473c9ef9ed77e8cf8e344f4357 (diff)
tiny: rename ENABLE_DEV_COREDUMP to ALLOW_DEV_COREDUMP
The ENABLE_DEV_COREDUMP option is misleading as it implies that it gets the framework enabled, this isn't true it just allows it to get enabled if a driver needs it. Rename it to ALLOW_DEV_COREDUMP to better capture its semantics. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Acked-by: Aristeu Rozanski <aris@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/base/Kconfig6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/base/Kconfig b/drivers/base/Kconfig
index c29d1600e90b..df04227d00cf 100644
--- a/drivers/base/Kconfig
+++ b/drivers/base/Kconfig
@@ -171,8 +171,8 @@ config WANT_DEV_COREDUMP
171 Drivers should "select" this option if they desire to use the 171 Drivers should "select" this option if they desire to use the
172 device coredump mechanism. 172 device coredump mechanism.
173 173
174config ENABLE_DEV_COREDUMP 174config ALLOW_DEV_COREDUMP
175 bool "Enable device coredump" if EXPERT 175 bool "Allow device coredump" if EXPERT
176 default y 176 default y
177 help 177 help
178 This option controls if the device coredump mechanism is available or 178 This option controls if the device coredump mechanism is available or
@@ -187,7 +187,7 @@ config ENABLE_DEV_COREDUMP
187config DEV_COREDUMP 187config DEV_COREDUMP
188 bool 188 bool
189 default y if WANT_DEV_COREDUMP 189 default y if WANT_DEV_COREDUMP
190 depends on ENABLE_DEV_COREDUMP 190 depends on ALLOW_DEV_COREDUMP
191 191
192config DEBUG_DRIVER 192config DEBUG_DRIVER
193 bool "Driver Core verbose debug messages" 193 bool "Driver Core verbose debug messages"