forked from len0rd/rockbox
Explicilty set CONFIG_ defines to 0 which are not used.. because doing
#if defined(BLAA) && BLAA == something defeats the point of Wundef git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12378 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1083de8e7d
commit
8ff3a653bd
9 changed files with 24 additions and 18 deletions
|
|
@ -37,7 +37,7 @@
|
|||
#include "backlight.h"
|
||||
#include "lcd.h"
|
||||
#include "rtc.h"
|
||||
#ifdef CONFIG_TUNER
|
||||
#if CONFIG_TUNER
|
||||
#include "fmradio.h"
|
||||
#endif
|
||||
#ifdef HAVE_UDA1380
|
||||
|
|
@ -634,7 +634,7 @@ static void handle_auto_poweroff(void)
|
|||
#endif
|
||||
|
||||
if(timeout &&
|
||||
#if defined(CONFIG_TUNER) && !defined(BOOTLOADER)
|
||||
#if CONFIG_TUNER && !defined(BOOTLOADER)
|
||||
(!(get_radio_status() & FMRADIO_PLAYING)) &&
|
||||
#endif
|
||||
!usb_inserted() &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue