diff options
author | Frank Svendsboe <frank.svendsboe@gmail.com> | 2012-05-17 16:43:09 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-06-01 15:06:59 -0400 |
commit | 2e929d001e85126d9267de373d4b76014789661d (patch) | |
tree | 7277fc82cae39f9b223d9b9fa04b51cccd5b2f5a /drivers/mtd/Kconfig | |
parent | 34a5704d91d6f8376a4c0a0143a1dd3eb3ccb37e (diff) |
mtd: of_parts: fix breakage in Kconfig
MTD_OF_PARTS and the default setting is not working due to using 'Y'
instead of 'y', introduced in commit
d6137badeff1ef64b4e0092ec249ebdeaeb3ff37. This made our board, and
possibly other boards using DTS defined partitions and not having
CONFIG_MTD_OF_PARTS=y defined in the defconfig, fail to mount root.
Signed-off-by: Frank Svendsboe <frank.svendsboe@gmail.com>
Cc: stable@kernel.org [3.2+]
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/Kconfig')
-rw-r--r-- | drivers/mtd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig index 5760c1a4b3f6..27143e042af5 100644 --- a/drivers/mtd/Kconfig +++ b/drivers/mtd/Kconfig | |||
@@ -128,7 +128,7 @@ config MTD_AFS_PARTS | |||
128 | 128 | ||
129 | config MTD_OF_PARTS | 129 | config MTD_OF_PARTS |
130 | tristate "OpenFirmware partitioning information support" | 130 | tristate "OpenFirmware partitioning information support" |
131 | default Y | 131 | default y |
132 | depends on OF | 132 | depends on OF |
133 | help | 133 | help |
134 | This provides a partition parsing function which derives | 134 | This provides a partition parsing function which derives |