diff options
author | Tom Rini <trini@konsulko.com> | 2021-12-15 11:49:30 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-12-15 11:49:30 -0500 |
commit | e09ca91cfa66fadb3b3e51f5bd9d15b1dfcc12d2 (patch) | |
tree | 188c9486ec25ceeeacc4bc1497f61e7def6efdaf /include | |
parent | 5a59f634e9943a8a7743ca9808f8e29308b876a8 (diff) | |
parent | 874e544e89a7f9f42796b23f8d43c56e203b6e69 (diff) |
Merge tag 'rpi-next-2022.01' of https://source.denx.de/u-boot/custodians/u-boot-raspberrypi
- enable RPi Zero 2 W
- fix MMC numbering issue
- Update link to documentation
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/rpi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/rpi.h b/include/configs/rpi.h index 55768a46da..4c5c1ac31f 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -137,7 +137,8 @@ #if CONFIG_IS_ENABLED(CMD_MMC) #define BOOT_TARGET_MMC(func) \ func(MMC, mmc, 0) \ - func(MMC, mmc, 1) + func(MMC, mmc, 1) \ + func(MMC, mmc, 2) #else #define BOOT_TARGET_MMC(func) #endif |