diff mbox series

[v5,8/9] arm: Remove vital devices last

Message ID 20210124213248.3715556-9-sjg@chromium.org
State Accepted
Commit 6224dc9ba428a7b7f7433d2bfd7bdf070b5bf06f
Delegated to: Simon Glass
Headers show
Series [v5,1/9] smem: Don't use -EPROBE_DEFER | expand

Commit Message

Simon Glass Jan. 24, 2021, 9:32 p.m. UTC
Update announce_and_cleanup() to remove all devices, with the vital ones
being removed last.

This is an extra patch on top of the recent RFC:

   http://patchwork.ozlabs.org/project/uboot/list/?series=223280

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v5:
- Add patch to remove vital devices last

 arch/arm/lib/bootm.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Simon Glass Feb. 4, 2021, 1:53 a.m. UTC | #1
Update announce_and_cleanup() to remove all devices, with the vital ones
being removed last.

This is an extra patch on top of the recent RFC:

   http://patchwork.ozlabs.org/project/uboot/list/?series=223280

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v5:
- Add patch to remove vital devices last

 arch/arm/lib/bootm.c | 3 +++
 1 file changed, 3 insertions(+)

Applied to u-boot-dm, thanks!
diff mbox series

Patch

diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c
index 1206e306db6..f46d51d6553 100644
--- a/arch/arm/lib/bootm.c
+++ b/arch/arm/lib/bootm.c
@@ -119,6 +119,9 @@  static void announce_and_cleanup(int fake)
 	 * This may be useful for last-stage operations, like cancelling
 	 * of DMA operation or releasing device internal buffers.
 	 */
+	dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL | DM_REMOVE_NON_VITAL);
+
+	/* Remove all active vital devices next */
 	dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
 
 	cleanup_before_linux();