summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-03-16 00:50:46 +0000
committerJens Arnold <amiconn@rockbox.org>2008-03-16 00:50:46 +0000
commit478ba0afa11061a620e44cd9cc60debd955b1b33 (patch)
treebd39e2100c58ea8e60a3cd61e9d402323834fb06 /firmware
parent3005cf5c86aefac3c14efe669f869be097a8ab6a (diff)
downloadrockbox-478ba0afa11061a620e44cd9cc60debd955b1b33.tar.gz
rockbox-478ba0afa11061a620e44cd9cc60debd955b1b33.zip
Add two missing coldfire interrupt vectors.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16681 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/coldfire/system-coldfire.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/firmware/target/coldfire/system-coldfire.c b/firmware/target/coldfire/system-coldfire.c
index 8b20360b46..eca5440679 100644
--- a/firmware/target/coldfire/system-coldfire.c
+++ b/firmware/target/coldfire/system-coldfire.c
@@ -46,7 +46,7 @@ static const char* const irqname[] = {
"","","","","","","","SOFTINT0",
"SOFTINT1","SOFTINT2","SOFTINT3","",
"","CDROMCRCERR","CDROMNOSYNC","CDROMILSYNC",
- "CDROMNEWBLK","","","","","","","",
+ "CDROMNEWBLK","","","","","","IIC2","ADC",
"","","","","","","","",
"","","","","","","","",
"","","","","","","","",
@@ -136,6 +136,9 @@ default_interrupt (CDROMNOSYNC); /* CD-ROM No sync */
default_interrupt (CDROMILSYNC); /* CD-ROM Illegal sync */
default_interrupt (CDROMNEWBLK); /* CD-ROM New block */
+default_interrupt (IIC2); /* I2C 2 */
+default_interrupt (ADC); /* A/D converter */
+
#if defined(IAUDIO_X5) || defined(IAUDIO_M5)
#define EXCP_BUTTON_GPIO_READ GPIO_READ
#define EXCP_BUTTON_MASK 0x0c000000
@@ -219,7 +222,7 @@ void (* const vbr[]) (void) __attribute__ ((section (".vectors"))) =
UIE,UIE,UIE,UIE,UIE,UIE,UIE,SOFTINT0,
SOFTINT1,SOFTINT2,SOFTINT3,UIE,
UIE,CDROMCRCERR,CDROMNOSYNC,CDROMILSYNC,
- CDROMNEWBLK,UIE,UIE,UIE,UIE,UIE,UIE,UIE,
+ CDROMNEWBLK,UIE,UIE,UIE,UIE,UIE,IIC2,ADC,
UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,
UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,UIE,