diff options
author | Adrien Schildknecht <adrien+dev@schischi.me> | 2015-11-10 20:12:19 +0100 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2015-12-22 11:32:06 +0100 |
commit | 28ff4fda9e5b4917375a49a3c6f76aed0cdd55ae (patch) | |
tree | 25ee09618eeae15d39023b2c9484f41960a0adf2 | |
parent | 1ff8950c04331883b11c5e0d6db96e2da8b6f8c9 (diff) | |
download | linux-28ff4fda9e5b4917375a49a3c6f76aed0cdd55ae.tar.bz2 |
mmc: kconfig: replace FAULT_INJECTION with FAULT_INJECTION_DEBUG_FS
Fault-injection capability for MMC IO uses debugfs entries to configure
the attributes.
FAULT_INJECTION_DEBUG_FS must be enabled to use FAIL_MMC_REQUEST.
Replace FAULT_INJECTION with FAULT_INJECTION_DEBUG_FS.
Also remove 'select DEBUG_FS' since FAULT_INJECTION_DEBUG_FS depends on
it.
Signed-off-by: Adrien Schildknecht <adrien+dev@schischi.me>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r-- | lib/Kconfig.debug | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 8c15b29d5adc..cdbf7fd69eb9 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -1523,8 +1523,7 @@ config FAIL_IO_TIMEOUT config FAIL_MMC_REQUEST bool "Fault-injection capability for MMC IO" - select DEBUG_FS - depends on FAULT_INJECTION && MMC + depends on FAULT_INJECTION_DEBUG_FS && MMC help Provide fault-injection capability for MMC IO. This will make the mmc core return data errors. This is |