forked from len0rd/rockbox
* dont compile audio codec drivers for bootloader, as we dont need them -> saves time
* dont include uda1380 in bootloaders * fix to get rid of a nasty humming sound during is not uda1380 specific but iriver specific and so put the fix into the bootloader. An other option was to put audiohw_reset() into target tree... but i want to get rid of audiohw_reset git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15721 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
41a67a7e90
commit
21ac3110f1
3 changed files with 19 additions and 9 deletions
|
@ -202,7 +202,7 @@ drivers/mas.c
|
|||
#endif /* SWCODEC */
|
||||
|
||||
/* Audio codec */
|
||||
#ifndef SIMULATOR
|
||||
#if !defined(SIMULATOR) && !defined(BOOTLOADER)
|
||||
#if defined(HAVE_UDA1380)
|
||||
drivers/audio/uda1380.c
|
||||
#elif defined(HAVE_WM8751)
|
||||
|
@ -222,7 +222,7 @@ drivers/audio/tlv320.c
|
|||
#elif defined(HAVE_MAS35XX)
|
||||
drivers/audio/mas35xx.c
|
||||
#endif /* defined(HAVE_*) */
|
||||
#endif /* SIMULATOR */
|
||||
#endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
|
||||
|
||||
/* USB Stack */
|
||||
#if !defined(SIMULATOR)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue