From e29ef816afb331ef623950f0a7f49a17ead85007 Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Thu, 6 Feb 2025 16:05:08 +0100 Subject: [PATCH] fix(core): fix emulator usb deinitialization [no changelog] --- core/embed/io/usb/unix/usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/io/usb/unix/usb.c b/core/embed/io/usb/unix/usb.c index 94cb44711e..5bde28f6fe 100644 --- a/core/embed/io/usb/unix/usb.c +++ b/core/embed/io/usb/unix/usb.c @@ -69,7 +69,7 @@ secbool usb_init(const usb_dev_info_t *dev_info) { return sectrue; } -void usb_deinit(void) {} +void usb_deinit(void) { usb_stop(); } secbool usb_start(void) { const char *ip = getenv("TREZOR_UDP_IP");