summaryrefslogtreecommitdiff
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
parent8ed0d198c504f2c6984de7bcdc07163b89f87ef0 (diff)
downloadrockbox-224c6d68f1e7ec889dc6c26e3eec45a65d643421.tar.gz
rockbox-224c6d68f1e7ec889dc6c26e3eec45a65d643421.zip
stfm1000: comment static unused function
Change-Id: Ie918a07c72bf9086508731faf658d57a286d922a
-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)
43 return ret; 43 return ret;
44} 44}
45 45
46#if 0
46static int stfm1000_write_reg(uint8_t reg, uint32_t val) 47static int stfm1000_write_reg(uint8_t reg, uint32_t val)
47{ 48{
48 uint8_t buf[5]; 49 uint8_t buf[5];
@@ -51,6 +52,7 @@ static int stfm1000_write_reg(uint8_t reg, uint32_t val)
51 buf[3] = (val >> 16) & 0xff; buf[4] = (val >> 24) & 0xff; 52 buf[3] = (val >> 16) & 0xff; buf[4] = (val >> 24) & 0xff;
52 return fmradio_i2c_write(STFM100_I2C_ADDR, buf, 5); 53 return fmradio_i2c_write(STFM100_I2C_ADDR, buf, 5);
53} 54}
55#endif
54 56
55void stfm1000_dbg_info(struct stfm1000_dbg_info *nfo) 57void stfm1000_dbg_info(struct stfm1000_dbg_info *nfo)
56{ 58{