diff options
-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 |