diff options
author | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-19 14:41:56 +0000 |
---|---|---|
committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-19 14:41:56 +0000 |
commit | 6c8269bc3f97b85f34d9b313b36d891e08b7ab66 (patch) | |
tree | bab5898264959568b6615675f8e014cbc021e8da /firmware/target/arm/as3525/system-as3525.c | |
parent | 8e12292e758b944fdc934f8ff87c838cd7acb689 (diff) |
fix previous commit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26166 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/as3525/system-as3525.c')
-rw-r--r-- | firmware/target/arm/as3525/system-as3525.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/as3525/system-as3525.c b/firmware/target/arm/as3525/system-as3525.c index 5614427e20..44e210a3cc 100644 --- a/firmware/target/arm/as3525/system-as3525.c +++ b/firmware/target/arm/as3525/system-as3525.c @@ -123,7 +123,7 @@ struct vec_int_src vec_int_srcs[] = { INT_SRC_I2C_AUDIO, INT_I2C_AUDIO }, { INT_SRC_AUDIO, INT_AUDIO }, #if defined(HAVE_HOTSWAP) || \ - (defined(SANSA_FUZEV2) && !defined(INCREASED_SCROLLWHEEL_POLLING) + (defined(SANSA_FUZEV2) && !INCREASED_SCROLLWHEEL_POLLING) { INT_SRC_GPIOA, INT_GPIOA, }, #endif /* Lowest priority at the end of the list */ @@ -155,7 +155,7 @@ void INT_GPIOA(void) void sd_gpioa_isr(void); sd_gpioa_isr(); #endif -#if defined(SANSA_FUZEV2) && !defined(INCREASED_SCROLLWHEEL_POLLING +#if defined(SANSA_FUZEV2) && !INCREASED_SCROLLWHEEL_POLLING void button_gpioa_isr(void); button_gpioa_isr(); #endif @@ -371,7 +371,7 @@ void system_init(void) #ifndef BOOTLOADER /* setup isr for microsd monitoring and for fuzev2 scrollwheel irq */ #if defined(HAVE_HOTSWAP) || \ - (defined(SANSA_FUZEV2) && !defined(INCREASED_SCROLLWHEEL_POLLING) + (defined(SANSA_FUZEV2) && !INCREASED_SCROLLWHEEL_POLLING) VIC_INT_ENABLE = (INTERRUPT_GPIOA); /* pin selection for irq happens in the drivers */ #endif |