diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-01-11 06:33:35 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2011-03-11 09:22:40 -0500 |
commit | 4d42942cff0785d8a153bafcd62b6870726cd5f1 (patch) | |
tree | 830234f508383377dfa48b0cf89c2215daf79400 /drivers/mtd/Kconfig | |
parent | c804c733846572ca85c2bba60c7fe6fa024dff18 (diff) |
mtd: make MTD_CONCAT support mandatory
Move mtdconcat to be an integral part of the mtd core. It's a tiny bit
of code, which bears 'say Y if you don't know what to do' note in the
Kconfig. OTOH there are several ugly ifdefs depending on the MTD_CONCAT.
So, making MTD_CONCAT support mandatory will allow us to clean up code a
lot.
Kconfig entry is changed to be a bool defaulting to Y, so all code
pieces depending on it, will have MTD_CONCAT Kconfig symbol and
CONFIG_MTD_CONCAT define. This will be removed in one of next patches.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Acked-by: Stefan Roese <sr@denx.de>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/Kconfig')
-rw-r--r-- | drivers/mtd/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig index 77414702cb00..c800247c04fb 100644 --- a/drivers/mtd/Kconfig +++ b/drivers/mtd/Kconfig | |||
@@ -34,7 +34,8 @@ config MTD_TESTS | |||
34 | various checks and verifications when loaded. | 34 | various checks and verifications when loaded. |
35 | 35 | ||
36 | config MTD_CONCAT | 36 | config MTD_CONCAT |
37 | tristate "MTD concatenating support" | 37 | bool |
38 | default y | ||
38 | help | 39 | help |
39 | Support for concatenating several MTD devices into a single | 40 | Support for concatenating several MTD devices into a single |
40 | (virtual) one. This allows you to have -for example- a JFFS(2) | 41 | (virtual) one. This allows you to have -for example- a JFFS(2) |