commit | e33cd225383809bd3f40164f138a91229cc4c724 | [log] [tgz] |
---|---|---|
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | Thu Nov 14 16:10:31 2019 +0100 |
committer | Tom Rini <trini@konsulko.com> | Tue Dec 03 08:44:14 2019 -0500 |
tree | c85e641a691301912e9393f665b3bfa05b58ed46 | |
parent | f1412ef0f066f3acec6bc62213c8aacb678359cd [diff] |
mmc: davinci: fix mmc boot in SPL The MMC boot is currently broken on omapl138-lcdk after enabling the driver model in SPL. The main problem is the driver's bind callback not being called after probe in SPL (even with the DM_FLAG_PRE_RELOC flag specified). While a proper fix is still being worked on, this hacky changeset at least fixes the MMC boot on this platform by calling mmc_bind() manually from probe(). Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>