diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-06-29 13:28:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-06-29 13:28:09 +0000 |
commit | 2d337552d42bed1ab3186b814dc6fd3ca55d7bc0 (patch) | |
tree | beb6c44cf0faae937cf371c74275087bd2abd092 /firmware | |
parent | ba6408122898091c57b331230560df460205a5a3 (diff) |
remove a warning from the h300 build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6917 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/usb.c | 5 |
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) #ifdef USB_GMINISTYLE current_status = (P5 & 0x10)?true:false; #endif +#ifdef IRIVER_H300 + /* TODO: add proper code code for H300 USB style */ + current_status = false; +#endif + return current_status; } |