summaryrefslogtreecommitdiff
path: root/firmware/target/arm/ipod/button-1g-3g.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/ipod/button-1g-3g.c')
-rw-r--r--firmware/target/arm/ipod/button-1g-3g.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/ipod/button-1g-3g.c b/firmware/target/arm/ipod/button-1g-3g.c
index 67aa7eb336..2710723866 100644
--- a/firmware/target/arm/ipod/button-1g-3g.c
+++ b/firmware/target/arm/ipod/button-1g-3g.c
@@ -265,7 +265,7 @@ void button_init_device(void)
265 GPIOA_INT_CLR = GPIOA_INT_STAT; 265 GPIOA_INT_CLR = GPIOA_INT_STAT;
266 266
267#ifdef IPOD_1G2G 267#ifdef IPOD_1G2G
268 if ((IPOD_HW_REVISION >> 16) == 1) 268 if ((IPOD_HW_REVISION >> 16) != 2)
269 { /* enable scroll wheel */ 269 { /* enable scroll wheel */
270 GPIOB_ENABLE |= 0x01; 270 GPIOB_ENABLE |= 0x01;
271 GPIOB_OUTPUT_EN |= 0x01; 271 GPIOB_OUTPUT_EN |= 0x01;
@@ -289,7 +289,7 @@ int button_read_device(void)
289 static unsigned char last_wheel_value = 0; 289 static unsigned char last_wheel_value = 0;
290 unsigned char wheel_value; 290 unsigned char wheel_value;
291 291
292 if ((IPOD_HW_REVISION >> 16) == 1) 292 if ((IPOD_HW_REVISION >> 16) != 2)
293 { 293 {
294 if (!hold_button && (wheel_timeout == 0)) 294 if (!hold_button && (wheel_timeout == 0))
295 { 295 {