env: Rename getenv/_f() to env_get()We are now using an env_ prefix for environment functions. Rename thesetwo functions for consistency. Also add function comments in common.h.Quite a few place
env: Rename getenv/_f() to env_get()We are now using an env_ prefix for environment functions. Rename thesetwo functions for consistency. Also add function comments in common.h.Quite a few places use getenv() in a condition context, provoking awarning from checkpatch. These are fixed up in this patch also.Suggested-by: Wolfgang Denk <wd@denx.de>Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
board_f: Drop setup_dram_config() wrapperBy making dram_init_banksize() return an error code we can drop thewrapper. Adjust this and clean up all implementations.Signed-off-by: Simon Glass <sjg@
board_f: Drop setup_dram_config() wrapperBy making dram_init_banksize() return an error code we can drop thewrapper. Adjust this and clean up all implementations.Signed-off-by: Simon Glass <sjg@chromium.org>Reviewed-by: Stefan Roese <sr@denx.de>
mmc: move some SDHCI related options to KconfigWhile I moved the options, I also renamed them so that they are allprefixed with MMC_SDHCI_.This commit was created in the following steps.[1] Re
mmc: move some SDHCI related options to KconfigWhile I moved the options, I also renamed them so that they are allprefixed with MMC_SDHCI_.This commit was created in the following steps.[1] Rename with the following commandfind . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \-type f -print | xargs sed -i -e 's/CONFIG_MMC_SDMA/CONFIG_MMC_SDHCI_SDMA/gs/CONFIG_BCM2835_SDHCI/CONFIG_MMC_SDHCI_BCM2835/gs/CONFIG_KONA_SDHCI/CONFIG_MMC_SDHCI_KONA/gs/CONFIG_MV_SDHCI/CONFIG_MMC_SDHCI_MV/gs/CONFIG_S5P_SDHCI/CONFIG_MMC_SDHCI_S5P/gs/CONFIG_SPEAR_SDHCI/CONFIG_MMC_SDHCI_SPEAR/g'[2] create the Kconfig entries in drivers/mmc/Kconfig[3] Move the options by the following commandtools/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 readabilitySigned-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>Reviewed-by: Tom Rini <trini@konsulko.com>Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
maintainers: new email addressUpdate the email address for the boards that I maintain.Signed-off-by: Steve Rae <steve.rae@raedomain.com>
board: arm:: Add support for Broadcom BCM23550Add support for the Broadcom BCM23550 board.Signed-off-by: Steve Rae <srae@broadcom.com>