diff options
author | Simon Glass | 2021-03-15 17:25:12 +1300 |
---|---|---|
committer | Simon Glass | 2021-03-22 19:23:28 +1300 |
commit | b5e514a6abc5cc31d350f9ca25cb6a6d4895c338 (patch) | |
tree | 405de70bda428c04e8aedd23a140ba57e34e8fcb /arch/sandbox | |
parent | cff7dcf3fd0de0120cd40c0c28864cb045143f97 (diff) |
sandbox: Drop debug message in os_spl_to_uboot()
This is not needed in normal operation. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'arch/sandbox')
-rw-r--r-- | arch/sandbox/cpu/os.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c index 2d9583c17ca..68825d28d6a 100644 --- a/arch/sandbox/cpu/os.c +++ b/arch/sandbox/cpu/os.c @@ -845,7 +845,6 @@ int os_spl_to_uboot(const char *fname) { struct sandbox_state *state = state_get_current(); - printf("%s\n", __func__); /* U-Boot will delete ram buffer after read: "--rm_memory"*/ state->ram_buf_rm = true; return os_jump_to_file(fname); |