mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
fix previous commit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26166 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8e12292e75
commit
6c8269bc3f
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue