summaryrefslogtreecommitdiffstats
path: root/firmware/usb.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/usb.c')
-rw-r--r--firmware/usb.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index aa6981ddf2..13adc3b391 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -138,13 +138,6 @@ void usb_enable(bool on)
or_b(0x08, &PADRL); /* deassert card detect */
}
or_b(0x28, &PAIORL); /* output for USB enable and card detect */
-#elif defined(USB_ISP1582)
- /* TODO: Implement USB_ISP1582 */
- (void) on;
-#elif defined(USB_X5M5_STYLE)
- /* TODO X5 */
-#elif defined(USB_GIGABEAT_STYLE)
- /* TODO gigabeat */
#else
#ifdef HAVE_LCD_BITMAP
if(read_hw_mask() & USB_ACTIVE_HIGH)
@@ -351,10 +344,6 @@ bool usb_detect(void)
#ifdef USB_PLAYERSTYLE
current_status = (PADR & 0x8000)?false:true;
#endif
-#ifdef USB_ISP1582
- /* TODO: Implement USB_ISP1582 */
- current_status = false;
-#endif
return current_status;
}
#endif