forked from len0rd/rockbox
Sansa doesn't use a Wolfson codec. Various other changes to allow Sansa to compile correctly with a normal build. Based on FS#6336 by Pavel Gnelitsa
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11570 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
242cbd5cd7
commit
43e2c01065
8 changed files with 111 additions and 21 deletions
|
@ -585,7 +585,7 @@ void UIE(unsigned int pc, unsigned int num)
|
|||
}
|
||||
}
|
||||
|
||||
#if CONFIG_CPU==PP5020
|
||||
#if CONFIG_CPU==PP5020 || CONFIG_CPU==PP5024
|
||||
|
||||
unsigned int ipod_hw_rev;
|
||||
|
||||
|
@ -605,9 +605,11 @@ void irq(void)
|
|||
else if (CPU_HI_INT_STAT & GPIO_MASK)
|
||||
ipod_mini_button_int();
|
||||
}
|
||||
#elif (defined IRIVER_H10) || (defined IRIVER_H10_5GB) || defined(ELIO_TPJ1022)
|
||||
#elif (defined IRIVER_H10) || (defined IRIVER_H10_5GB) || defined(ELIO_TPJ1022) \
|
||||
|| (defined SANSA_E200)
|
||||
/* TODO: this should really be in the target tree, but moving it there caused
|
||||
crt0.S not to find it while linking */
|
||||
/* TODO: Even if it isn't in the target tree, this should be the default case */
|
||||
void irq(void)
|
||||
{
|
||||
if (CPU_INT_STAT & TIMER1_MASK)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue