diff options
author | Tom Rini <trini@konsulko.com> | 2020-01-08 15:08:34 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-08 15:08:34 -0500 |
commit | 3e99c183739afe698df8a4ba813940c94379095b (patch) | |
tree | 846ac3ff496f57d6440b17028bc0c801007bbdc3 /board | |
parent | d8a3f5259a36e76d1de127f65714c40918e8ee4c (diff) | |
parent | 964b90f61d2b49844bd42d0a0580e1a404063ee1 (diff) |
Merge branch '2020-01-07-master-imports'
- DT overlay support in FIT images in SPL
- remoteproc update
- Assorted SATA fixes
- Other assorted fixes
Diffstat (limited to 'board')
-rw-r--r-- | board/st/stm32mp1/stm32mp1.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/board/st/stm32mp1/stm32mp1.c b/board/st/stm32mp1/stm32mp1.c index cee3500737..1d4a54c902 100644 --- a/board/st/stm32mp1/stm32mp1.c +++ b/board/st/stm32mp1/stm32mp1.c @@ -1096,10 +1096,8 @@ static void board_copro_image_process(ulong fw_image, size_t fw_size) printf("Load Remote Processor %d with data@addr=0x%08lx %u bytes:%s\n", id, fw_image, fw_size, ret ? " Failed!" : " Success!"); - if (!ret) { + if (!ret) rproc_start(id); - env_set("copro_state", "booted"); - } } U_BOOT_FIT_LOADABLE_HANDLER(IH_TYPE_COPRO, board_copro_image_process); |