summaryrefslogtreecommitdiff
path: root/board/wandboard/spl.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/wandboard/spl.c')
-rw-r--r--board/wandboard/spl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/wandboard/spl.c b/board/wandboard/spl.c
index 0983d10058..717e02a039 100644
--- a/board/wandboard/spl.c
+++ b/board/wandboard/spl.c
@@ -487,7 +487,7 @@ int board_mmc_init(struct bd_info *bis)
* mmc0 SOM MicroSD
* mmc1 Carrier board MicroSD
*/
- 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);
@@ -504,7 +504,7 @@ int board_mmc_init(struct bd_info *bis)
default:
printf("Warning: you configured more USDHC controllers"
"(%d) then supported by the board (%d)\n",
- index + 1, CONFIG_SYS_FSL_USDHC_NUM);
+ index + 1, CFG_SYS_FSL_USDHC_NUM);
return -EINVAL;
}