From 478ba0afa11061a620e44cd9cc60debd955b1b33 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sun, 16 Mar 2008 00:50:46 +0000 Subject: Add two missing coldfire interrupt vectors. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16681 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/coldfire/system-coldfire.c | 7 +++++-- 1 file 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, -- cgit v1.2.3