diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-12-07 13:10:29 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-29 18:08:16 (GMT) |
commit | 45a68fe267f14aae05c5d244b1bcda075de7d0a6 (patch) | |
tree | 66c66c49f8c2c460b583a27d27d3fa7c13023ff6 /configs/bcm23550_w1d_defconfig | |
parent | e1ce61fbba76304b5ff7e328a55050ceea5028ef (diff) | |
download | u-boot-45a68fe267f14aae05c5d244b1bcda075de7d0a6.tar.xz |
mmc: move some SDHCI related options to Kconfig
While I moved the options, I also renamed them so that they are all
prefixed with MMC_SDHCI_.
This commit was created in the following steps.
[1] Rename with the following command
find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
-type f -print | xargs sed -i -e '
s/CONFIG_MMC_SDMA/CONFIG_MMC_SDHCI_SDMA/g
s/CONFIG_BCM2835_SDHCI/CONFIG_MMC_SDHCI_BCM2835/g
s/CONFIG_KONA_SDHCI/CONFIG_MMC_SDHCI_KONA/g
s/CONFIG_MV_SDHCI/CONFIG_MMC_SDHCI_MV/g
s/CONFIG_S5P_SDHCI/CONFIG_MMC_SDHCI_S5P/g
s/CONFIG_SPEAR_SDHCI/CONFIG_MMC_SDHCI_SPEAR/g
'
[2] create the Kconfig entries in drivers/mmc/Kconfig
[3] Move the options by the following command
tools/moveconfig.py -y MMC_SDHCI_SDMA MMC_SDHCI_BCM2835 \
MMC_SDHCI_KONA MMC_SDHCI_MV MMC_SDHCI_S5P MMC_SDHCI_SPEAR
[4] Sort drivers/mmc/Makefile for readability
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'configs/bcm23550_w1d_defconfig')
-rw-r--r-- | configs/bcm23550_w1d_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/bcm23550_w1d_defconfig b/configs/bcm23550_w1d_defconfig index 121372e..4c7709c 100644 --- a/configs/bcm23550_w1d_defconfig +++ b/configs/bcm23550_w1d_defconfig @@ -25,6 +25,8 @@ CONFIG_CMD_GPIO=y CONFIG_CMD_CACHE=y CONFIG_CMD_FAT=y CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_SDMA=y +CONFIG_MMC_SDHCI_KONA=y CONFIG_SYS_NS16550=y CONFIG_USB=y CONFIG_USB_GADGET=y |