summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2021-10-31 12:30:27 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2021-10-31 12:30:27 -0400
commit7a6737f4713a15fae7c4850395615804a09c742b (patch)
treec294d05edbee7d5ecc33a339b52805553df24f41
parent894a9d9063873dfbb4d0f535da7c335638c00fec (diff)
downloadrockbox-7a6737f4713a15fae7c4850395615804a09c742b.tar.gz
rockbox-7a6737f4713a15fae7c4850395615804a09c742b.zip
USB Events fix red on devices without HAVE_USB_POWER
Change-Id: I112e6379d4bed019d7e047e5802f104e250d926e
-rw-r--r--firmware/usb.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index 9d071578b5..898df0d434 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -477,6 +477,9 @@ static void NORETURN_ATTR usb_thread(void)
usb_stack_enable(true);
#ifndef BOOTLOADER
+#ifndef HAVE_USB_POWER
+ int usb_mode = 0;
+#endif
send_event(SYS_EVENT_USB_INSERTED, &usb_mode);
#endif
/* Power (charging-only) button */