summaryrefslogtreecommitdiffstats
path: root/firmware/drivers/tuner/stfm1000.c
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2013-01-15 19:49:52 +0000
committerAmaury Pouly <amaury.pouly@gmail.com>2013-01-15 19:49:52 +0000
commit224c6d68f1e7ec889dc6c26e3eec45a65d643421 (patch)
tree8e73f376e52870ab16cc3024aee856f6aa1e03d9 /firmware/drivers/tuner/stfm1000.c
parent8ed0d198c504f2c6984de7bcdc07163b89f87ef0 (diff)
downloadrockbox-224c6d68f1e7ec889dc6c26e3eec45a65d643421.tar.gz
rockbox-224c6d68f1e7ec889dc6c26e3eec45a65d643421.zip
stfm1000: comment static unused function
Change-Id: Ie918a07c72bf9086508731faf658d57a286d922a
Diffstat (limited to 'firmware/drivers/tuner/stfm1000.c')
-rw-r--r--firmware/drivers/tuner/stfm1000.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/drivers/tuner/stfm1000.c b/firmware/drivers/tuner/stfm1000.c
index cc1e8f09c7..4330d06d72 100644
--- a/firmware/drivers/tuner/stfm1000.c
+++ b/firmware/drivers/tuner/stfm1000.c
@@ -43,6 +43,7 @@ static int stfm1000_read_reg(uint8_t reg, uint32_t *val)
return ret;
}
+#if 0
static int stfm1000_write_reg(uint8_t reg, uint32_t val)
{
uint8_t buf[5];
@@ -51,6 +52,7 @@ static int stfm1000_write_reg(uint8_t reg, uint32_t val)
buf[3] = (val >> 16) & 0xff; buf[4] = (val >> 24) & 0xff;
return fmradio_i2c_write(STFM100_I2C_ADDR, buf, 5);
}
+#endif
void stfm1000_dbg_info(struct stfm1000_dbg_info *nfo)
{