summaryrefslogtreecommitdiffstats
path: root/firmware/usb.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/usb.c')
-rw-r--r--firmware/usb.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index 8443ffed3a..aca2683d58 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -817,13 +817,6 @@ int usb_release_exclusive_storage(void)
return bccount;
}
-#ifdef HAVE_USB_POWER
-bool usb_powered_only(void)
-{
- return usb_state == USB_POWERED;
-}
-#endif /* HAVE_USB_POWER */
-
#ifdef USB_ENABLE_HID
void usb_set_hid(bool enable)
{
@@ -832,6 +825,13 @@ void usb_set_hid(bool enable)
}
#endif /* USB_ENABLE_HID */
+#ifdef HAVE_USB_POWER
+bool usb_powered_only(void)
+{
+ return usb_state == USB_POWERED;
+}
+#endif /* HAVE_USB_POWER */
+
#elif defined(USB_NONE)
/* Dummy functions for USB_NONE */