Fix remaining CONFIG_TUNER checks.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12385 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2007-02-18 08:46:12 +00:00
parent 9a6f419775
commit c652218d14
16 changed files with 30 additions and 30 deletions

View file

@ -143,7 +143,7 @@ bool main_menu(void)
items[i].desc = ID2P(LANG_CUSTOM_THEME);
items[i++].function = custom_theme_browse;
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
if(radio_hardware_present()) {
items[i].desc = ID2P(LANG_FM_RADIO);
items[i++].function = radio_screen;

View file

@ -61,7 +61,7 @@
#include "dir.h"
#include "action.h"
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
#if CONFIG_KEYPAD == RECORDER_PAD
#define FM_RECORD

View file

@ -23,7 +23,7 @@
#include "fmradio.h"
#endif
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
void radio_load_presets(char *filename);
void radio_init(void);
bool radio_screen(void);

View file

@ -273,7 +273,7 @@ struct system_status
#ifdef HAVE_DIRCACHE
int dircache_size; /* directory cache structure last size, 22 bits */
#endif
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
int last_frequency; /* Last frequency for resuming, in FREQ_STEP units,
relative to MIN_FREQ */
#endif
@ -404,7 +404,7 @@ struct user_settings
bool resume; /* resume option: 0=off, 1=on */
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
unsigned char fmr_file[MAX_FILENAME+1]; /* last fmr preset */
#endif
unsigned char font_file[MAX_FILENAME+1]; /* last font */
@ -476,7 +476,7 @@ struct user_settings
bool fade_on_stop; /* fade on pause/unpause/stop */
bool caption_backlight; /* turn on backlight at end and start of track */
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
int fm_freq_step; /* Frequency step for manual tuning, in kHz */
bool fm_force_mono; /* Forces Mono mode if true */
bool fm_full_range; /* Enables full 10MHz-160MHz range if true, else
@ -663,7 +663,7 @@ struct user_settings
int unplug_rw; /* time in s to rewind when pausing */
bool unplug_autoresume; /* disable auto-resume if no phones */
#endif
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
int fm_region;
#endif
bool audioscrobbler; /* Audioscrobbler logging */

View file

@ -480,7 +480,7 @@ const struct settings_list settings[] = {
LANG_CAR_ADAPTER_MODE, false, "car adapter mode", NULL),
#endif
/* tuner */
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
OFFON_SETTING(0,fm_force_mono, LANG_FM_MONO_MODE,
false,"force fm mono", NULL),
SYSTEM_SETTING(NVRAM(4),last_frequency,0),
@ -1022,7 +1022,7 @@ const struct settings_list settings[] = {
OFFON_SETTING(0,unplug_autoresume,LANG_UNPLUG_DISABLE_AUTORESUME,false,
"disable autoresume if phones not present",NULL),
#endif
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
{F_T_INT,&global_settings.fm_region,LANG_FM_REGION,INT(0),
"fm_region","eu,us,jp,kr",UNUSED},
#endif
@ -1036,7 +1036,7 @@ const struct settings_list settings[] = {
#endif
/** settings not in the old config blocks **/
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
FILENAME_SETTING(0, fmr_file, "fmr",
"", FMPRESET_PATH "/", ".fmr", MAX_FILENAME+1),
#endif

View file

@ -41,7 +41,7 @@
#include "sound.h"
#ifdef HAVE_RECORDING
#include "audio.h"
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
#include "radio.h"
#endif
#endif

View file

@ -23,7 +23,7 @@
#include "debug.h"
#include "system.h"
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
/* Signals:
DI (Data In) - PB0 (doubles as data pin for the LCD)

View file

@ -34,7 +34,7 @@ bool charger_enabled;
#endif
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
static bool powered = false;
@ -59,7 +59,7 @@ bool radio_power(bool status)
return old_status;
}
#endif /* #ifdef CONFIG_TUNER */
#endif /* #if CONFIG_TUNER */
#ifndef SIMULATOR

View file

@ -136,14 +136,14 @@ enum audio_sources
#ifdef HAVE_SPDIF_IN
AUDIO_SRC_SPDIF, /* monitor spdif */
#endif
#if defined(HAVE_FMRADIO_IN) || defined(CONFIG_TUNER)
#if defined(HAVE_FMRADIO_IN) || CONFIG_TUNER
AUDIO_SRC_FMRADIO, /* monitor fm radio */
#endif
/* define new audio sources above this line */
AUDIO_SOURCE_LIST_END,
/* AUDIO_SRC_FMRADIO must be declared #ifdef CONFIG_TUNER but is not in
/* AUDIO_SRC_FMRADIO must be declared #if CONFIG_TUNER but is not in
the list of recordable sources. HAVE_FMRADIO_IN implies CONFIG_TUNER. */
#if defined(HAVE_FMRADIO_IN) || !defined(CONFIG_TUNER)
#if defined(HAVE_FMRADIO_IN) || (CONFIG_TUNER == 0)
AUDIO_NUM_SOURCES = AUDIO_SOURCE_LIST_END,
#else
AUDIO_NUM_SOURCES = AUDIO_SOURCE_LIST_END-1,
@ -155,7 +155,7 @@ enum audio_sources
/* selects an audio source for recording or playback */
#define SRCF_PLAYBACK 0x0000 /* default */
#define SRCF_RECORDING 0x1000
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
/* for AUDIO_SRC_FMRADIO */
#define SRCF_FMRADIO_PLAYING 0x0000 /* default */
#define SRCF_FMRADIO_PAUSED 0x2000

View file

@ -47,7 +47,7 @@ void spdif_power_enable(bool on);
bool spdif_powered(void);
#endif
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
extern bool radio_power(bool status);
extern bool radio_powered(void);
#endif

View file

@ -37,7 +37,7 @@
#define RADIO_STEREO 2
#define RADIO_ALL 3 /* debug */
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
#if (CONFIG_TUNER & S1A0903X01)
void samsung_set(int setting, int value);
@ -49,6 +49,6 @@ void philips_set(int setting, int value);
int philips_get(int setting);
#endif
#endif /* #ifdef CONFIG_TUNER */
#endif /* #if CONFIG_TUNER */
#endif

View file

@ -37,7 +37,7 @@ bool charger_enabled;
#endif
#if 0
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
static bool powered = false;
@ -62,7 +62,7 @@ bool radio_power(bool status)
return old_status;
}
#endif /* #ifdef CONFIG_TUNER */
#endif /* #if CONFIG_TUNER */
#endif
void power_init(void)

View file

@ -27,7 +27,7 @@
#include "logf.h"
#include "usb.h"
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
static bool powered = false;
@ -44,7 +44,7 @@ bool radio_power(bool status)
return old_status;
}
#endif /* #ifdef CONFIG_TUNER */
#endif /* #if CONFIG_TUNER */
#ifndef SIMULATOR

View file

@ -25,7 +25,7 @@
#include "spdif.h"
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
static bool powered = false;
@ -41,7 +41,7 @@ bool radio_power(bool status)
return old_status;
}
#endif /* #ifdef CONFIG_TUNER */
#endif /* #if CONFIG_TUNER */
#ifndef SIMULATOR

View file

@ -25,7 +25,7 @@
#include "pcf50606.h"
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
static bool powered = false;
@ -41,7 +41,7 @@ bool radio_power(bool status)
return old_status;
}
#endif /* #ifdef CONFIG_TUNER */
#endif /* #if CONFIG_TUNER */
#ifndef SIMULATOR

View file

@ -21,7 +21,7 @@
#include "debug.h"
#include "tuner.h"
#ifdef CONFIG_TUNER
#if CONFIG_TUNER
static int frequency = 0;
static bool mono = false;