diff options
author | Tom Rini <trini@konsulko.com> | 2023-03-22 14:01:01 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-22 14:01:01 -0400 |
commit | c84a00a647057d83ecfb081ca03c4865e4c1c1be (patch) | |
tree | c06d3e7309022a299855ac566ba51f3fb38b0007 /arch/arm/lib/reset.c | |
parent | 5e207b8517427226b96c5e808ae119fb1d75d39a (diff) | |
parent | f8461352b84ea66ad03d3231a5056643ab73515d (diff) |
Merge branch '2023-03-22-assorted-fixes'
- Assorted TI platform fixes, correct location of NXP boot format git
repository, don't try and mount partitions that are too small to be
ext4 as ext4, handle .bin files in .gitattributes, flush out panic
messages for sure, and correct console location on Arm total_compute.
Diffstat (limited to 'arch/arm/lib/reset.c')
-rw-r--r-- | arch/arm/lib/reset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/lib/reset.c b/arch/arm/lib/reset.c index 95169bae1c1..3e051e36f12 100644 --- a/arch/arm/lib/reset.c +++ b/arch/arm/lib/reset.c @@ -25,6 +25,7 @@ #include <cpu_func.h> #include <irq_func.h> #include <linux/delay.h> +#include <stdio.h> __weak void reset_misc(void) { @@ -33,8 +34,7 @@ __weak void reset_misc(void) int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { puts ("resetting ...\n"); - - mdelay(50); /* wait 50 ms */ + flush(); disable_interrupts(); |