summaryrefslogtreecommitdiff
path: root/apps/recorder/radio.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/radio.h')
-rw-r--r--apps/recorder/radio.h21
1 files changed, 2 insertions, 19 deletions
diff --git a/apps/recorder/radio.h b/apps/recorder/radio.h
index f04c14d6d3..c456d3a6a3 100644
--- a/apps/recorder/radio.h
+++ b/apps/recorder/radio.h
@@ -44,23 +44,6 @@ struct fmstation
44 char name[MAX_FMPRESET_LEN+1]; 44 char name[MAX_FMPRESET_LEN+1];
45}; 45};
46 46
47struct fm_region_setting 47#endif /* CONFIG_TUNER */
48{
49 int freq_min;
50 int freq_max;
51 int freq_step;
52#if (CONFIG_TUNER & TEA5767)
53 char deemphasis; /* 0: 50us, 1: 75us */
54 char band; /* 0: europe, 1: japan (BL in TEA spec)*/
55 /* Note: "region" parameter is just for display atm and is not compiled. */
56 #define FM_REGION_ENTRY(region, fmin, fmax, fstep, deemph, band) \
57 { fmin, fmax, fstep, deemph, band }
58#else
59 #define FM_REGION_ENTRY(region, fmin, fmax, fstep, deemph, band) \
60 { fmin, fmax, fstep }
61#endif
62};
63 48
64#endif 49#endif /* RADIO_H */
65
66#endif