summaryrefslogtreecommitdiff
path: root/firmware/drivers/tuner/si4700.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2017-02-11 23:16:39 -0500
committerMichael Sevakis <jethead71@rockbox.org>2017-02-11 23:16:39 -0500
commit523ef4edbdccf8198fbb7787afba2fe3f46f1ca8 (patch)
tree3238ca1502c92ce2078ff58a6f2a2589eaa68a95 /firmware/drivers/tuner/si4700.c
parentfc9695eb47732e1c189e2f033dbd55e5c346e8c4 (diff)
downloadrockbox-523ef4edbdccf8198fbb7787afba2fe3f46f1ca8.tar.gz
rockbox-523ef4edbdccf8198fbb7787afba2fe3f46f1ca8.zip
Fix warnings and errors from fc9695e
* fmradio.c needs an implementation of tuner_get_rds_info() for the sim (kill all the sims). * Some macro bitflags shouldn't be seen unless HAVE_RDS_CAP is defined. Change-Id: Idd00c94ca2fc43cf32f9223aa4530d5a02fb3454
Diffstat (limited to 'firmware/drivers/tuner/si4700.c')
-rw-r--r--firmware/drivers/tuner/si4700.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/drivers/tuner/si4700.c b/firmware/drivers/tuner/si4700.c
index c7d942f293..af5795a83f 100644
--- a/firmware/drivers/tuner/si4700.c
+++ b/firmware/drivers/tuner/si4700.c
@@ -28,7 +28,9 @@
28#include "tuner.h" /* tuner abstraction interface */ 28#include "tuner.h" /* tuner abstraction interface */
29#include "fmradio.h" 29#include "fmradio.h"
30#include "fmradio_i2c.h" /* physical interface driver */ 30#include "fmradio_i2c.h" /* physical interface driver */
31#ifdef HAVE_RDS_CAP
31#include "rds.h" 32#include "rds.h"
33#endif
32 34
33#if defined(SANSA_CLIP) || defined(SANSA_E200V2) || defined(SANSA_FUZE) || defined(SANSA_C200V2) \ 35#if defined(SANSA_CLIP) || defined(SANSA_E200V2) || defined(SANSA_FUZE) || defined(SANSA_C200V2) \
34 || defined(SANSA_FUZEPLUS) 36 || defined(SANSA_FUZEPLUS)