summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/usb.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index 866ca5319c..58656b585f 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -353,6 +353,11 @@ bool usb_detect(void)
353#ifdef USB_GMINISTYLE 353#ifdef USB_GMINISTYLE
354 current_status = (P5 & 0x10)?true:false; 354 current_status = (P5 & 0x10)?true:false;
355#endif 355#endif
356#ifdef IRIVER_H300
357 /* TODO: add proper code code for H300 USB style */
358 current_status = false;
359#endif
360
356 return current_status; 361 return current_status;
357} 362}
358 363