summaryrefslogtreecommitdiffstats
path: root/firmware/usb.c
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2011-05-16 21:10:31 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2011-05-16 21:10:31 +0000
commite8c79d65e18be1eb1ddc8a0e32a04c17dbc73459 (patch)
treea71490f2e6ca03f6c3590f653283aacff860258d /firmware/usb.c
parent84b4c46d74d2b757026d425953bf2b033e124016 (diff)
downloadrockbox-e8c79d65e18be1eb1ddc8a0e32a04c17dbc73459.tar.gz
rockbox-e8c79d65e18be1eb1ddc8a0e32a04c17dbc73459.zip
The gigabeat S needs special casing so that you can still hold vol down to access its firmware partition. Additionally, the same logic should apply to firewire on the iPods.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29890 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/usb.c')
-rw-r--r--firmware/usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index b8e2b5298c..2f277ac200 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -347,7 +347,7 @@ static inline bool usb_power_button(void)
#ifdef USB_FIREWIRE_HANDLING
static inline bool usb_reboot_button(void)
{
- return (button_status() & ~USBPOWER_BTN_IGNORE) != USBPOWER_BUTTON;
+ return (button_status() & ~USBPOWER_BTN_IGNORE);
}
#endif
#else /* !HAVE_USB_POWER */