aboutsummaryrefslogtreecommitdiff
path: root/board/liebherr
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-10-28 20:27:13 -0400
committerTom Rini <trini@konsulko.com>2022-11-10 10:08:55 -0500
commit6cc04547cb3bbd3a3d78947f200acbae19e3c67f (patch)
tree518a634e223bfb02d08ca359331a4ec08c20513c /board/liebherr
parent5155207ae1a0797a99c0a5f4e99741960ff04697 (diff)
downloadu-boot-6cc04547cb3bbd3a3d78947f200acbae19e3c67f.zip
u-boot-6cc04547cb3bbd3a3d78947f200acbae19e3c67f.tar.gz
u-boot-6cc04547cb3bbd3a3d78947f200acbae19e3c67f.tar.bz2
global: Migrate CONFIG_SYS_FSL* symbols to the CFG_SYS namespace
Migrate all of COFIG_SYS_FSL* to the CFG_SYS namespace. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/liebherr')
-rw-r--r--board/liebherr/mccmon6/spl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/liebherr/mccmon6/spl.c b/board/liebherr/mccmon6/spl.c
index 56eae3b..b1f6881 100644
--- a/board/liebherr/mccmon6/spl.c
+++ b/board/liebherr/mccmon6/spl.c
@@ -539,7 +539,7 @@ int board_mmc_init(struct bd_info *bis)
* mmc0 Soldered on board eMMC device
* mmc1 MicroSD card
*/
- for (index = 0; index < CONFIG_SYS_FSL_USDHC_NUM; ++index) {
+ for (index = 0; index < CFG_SYS_FSL_USDHC_NUM; ++index) {
switch (index) {
case 0:
SETUP_IOMUX_PADS(usdhc3_pads);
@@ -554,7 +554,7 @@ int board_mmc_init(struct bd_info *bis)
break;
default:
printf("Warning: More USDHC controllers (%d) than supported (%d)\n",
- index + 1, CONFIG_SYS_FSL_USDHC_NUM);
+ index + 1, CFG_SYS_FSL_USDHC_NUM);
return -EINVAL;
}