diff options
author | Tom Rini <trini@konsulko.com> | 2020-01-25 12:04:59 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-25 12:04:59 -0500 |
commit | d31dd3b596190bdecbd109e404f16bd208fe32ba (patch) | |
tree | d862bd67736079799b474d876f38b75032ade5b6 /common/board_r.c | |
parent | 2c871f9e084b2c03d1961884228a6901387ab8d6 (diff) | |
parent | 683b7c2a170a71bded99bb9e7dfd26372427ca1c (diff) |
Merge branch '2020-01-24-master-imports'
- Enable fastboot on some MediaTek platforms
- DMA enchancements
- Assorted bugfixes
Diffstat (limited to 'common/board_r.c')
-rw-r--r-- | common/board_r.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/board_r.c b/common/board_r.c index 8a0c1114e77..4f56c19fcc9 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -865,6 +865,9 @@ static init_fnc_t init_sequence_r[] = { #if defined(CONFIG_PRAM) initr_mem, #endif +#ifdef CONFIG_BLOCK_CACHE + blkcache_init, +#endif run_main_loop, }; |