1
0
Fork 0
forked from len0rd/rockbox

remove a warning from the h300 build

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6917 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-06-29 13:28:09 +00:00
parent ba64081228
commit 2d337552d4

View file

@ -353,6 +353,11 @@ bool usb_detect(void)
#ifdef USB_GMINISTYLE #ifdef USB_GMINISTYLE
current_status = (P5 & 0x10)?true:false; current_status = (P5 & 0x10)?true:false;
#endif #endif
#ifdef IRIVER_H300
/* TODO: add proper code code for H300 USB style */
current_status = false;
#endif
return current_status; return current_status;
} }