]> git.baikalelectronics.ru Git - uboot.git/commitdiff
sandbox: Correct uninit conflict
authorSimon Glass <sjg@chromium.org>
Mon, 15 Mar 2021 05:11:24 +0000 (18:11 +1300)
committerSimon Glass <sjg@chromium.org>
Sat, 27 Mar 2021 02:04:31 +0000 (15:04 +1300)
It is not possible to remove the state before driver model is uninited,
since the devices are allocated in the memory buffer. Also it is not
possible to uninit driver model afterwards, since the RAM has been
freed.

Drop the uninit altogether, since it is not actually necessary.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/sandbox/cpu/cpu.c

index edd48e2c1b74f6d1a659a50e0aab4c150523b17a..48636ab63919b1143f848c66826e035c455807d8 100644 (file)
@@ -6,7 +6,6 @@
 #include <common.h>
 #include <bootstage.h>
 #include <cpu_func.h>
-#include <dm.h>
 #include <errno.h>
 #include <log.h>
 #include <asm/global_data.h>
@@ -17,7 +16,6 @@
 #include <asm/malloc.h>
 #include <asm/setjmp.h>
 #include <asm/state.h>
-#include <dm/root.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -34,10 +32,8 @@ void sandbox_exit(void)
 {
        /* Do this here while it still has an effect */
        os_fd_restore();
-       if (state_uninit())
-               os_exit(2);
 
-       if (dm_uninit())
+       if (state_uninit())
                os_exit(2);
 
        /* This is considered normal termination for now */