diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-05-09 11:31:39 (GMT) |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2017-05-15 09:28:23 (GMT) |
commit | 4aa2ba3a34e3e4413c2cc63fc54f3176881b1a56 (patch) | |
tree | cbbf5270c25df39b4b806727ff18b7c7483320b8 /board/compulab/cl-som-am57x/cl-som-am57x.c | |
parent | 67e09e248fd3ffaa36e0481d78a31be4736d68c0 (diff) | |
download | u-boot-fsl-qoriq-4aa2ba3a34e3e4413c2cc63fc54f3176881b1a56.tar.xz |
mmc: replace CONFIG_GENERIC_MMC with CONFIG_MMC
Now CONFIG_GENERIC_MMC and CONFIG_MMC match for all defconfig.
We do not need two options for the same feature. Deprecate the
former.
This commit was generated with the sed script 's/GENERIC_MMC/MMC/'
and manual fixup of drivers/mmc/Kconfig.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'board/compulab/cl-som-am57x/cl-som-am57x.c')
-rw-r--r-- | board/compulab/cl-som-am57x/cl-som-am57x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/compulab/cl-som-am57x/cl-som-am57x.c b/board/compulab/cl-som-am57x/cl-som-am57x.c index 4701b71..389eebb 100644 --- a/board/compulab/cl-som-am57x/cl-som-am57x.c +++ b/board/compulab/cl-som-am57x/cl-som-am57x.c @@ -33,7 +33,7 @@ int board_init(void) return 0; } -#ifdef CONFIG_GENERIC_MMC +#ifdef CONFIG_MMC #define SB_SOM_CD_GPIO 187 #define SB_SOM_WP_GPIO 188 @@ -51,7 +51,7 @@ int board_mmc_init(bd_t *bis) return ret0 && ret1; } -#endif /* CONFIG_GENERIC_MMC */ +#endif /* CONFIG_MMC */ int misc_init_r(void) { |