From 19773258d75c85e14c319ed57affe73fdf467643 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Tue, 15 Sep 2026 19:56:16 +0200 Subject: [PATCH] Make Reboot::reboot_to_firmware_update non-diverging --- src/admin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/admin.rs b/src/admin.rs index f2ee6f7..0f41baa 100644 --- a/src/admin.rs +++ b/src/admin.rs @@ -170,7 +170,7 @@ pub trait Reboot { /// Presuming the device has a separate mode of operation that /// allows updating its firmware (for instance, a bootloader), /// reboots the device into this mode. - fn reboot_to_firmware_update() -> !; + fn reboot_to_firmware_update(); /// Reboots the device. ///