summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/target/arm/usb-fw-pp502x.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/usb-fw-pp502x.c b/firmware/target/arm/usb-fw-pp502x.c
index 240548bf61..be37b8b710 100644
--- a/firmware/target/arm/usb-fw-pp502x.c
+++ b/firmware/target/arm/usb-fw-pp502x.c
@@ -92,7 +92,9 @@ void usb_init_device(void)
92void usb_enable(bool on) 92void usb_enable(bool on)
93{ 93{
94#ifdef HAVE_USBSTACK 94#ifdef HAVE_USBSTACK
95 (void)on; 95 if (!on) {
96 usb_stack_stop();
97 }
96#else 98#else
97 /* This device specific code will eventually give way to proper USB 99 /* This device specific code will eventually give way to proper USB
98 handling, which should be the same for all PP502x targets. */ 100 handling, which should be the same for all PP502x targets. */
@@ -149,8 +151,6 @@ int usb_detect(void)
149 status = usbstatus2 ? USB_INSERTED : USB_POWERED; 151 status = usbstatus2 ? USB_INSERTED : USB_POWERED;
150#ifndef HAVE_USBSTACK 152#ifndef HAVE_USBSTACK
151 dr_controller_stop(); 153 dr_controller_stop();
152#else
153 usb_stack_stop();
154#endif 154#endif
155 } 155 }
156 return status; 156 return status;