diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-01-15 19:49:52 +0000 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-01-15 19:49:52 +0000 |
| commit | 224c6d68f1e7ec889dc6c26e3eec45a65d643421 (patch) | |
| tree | 8e73f376e52870ab16cc3024aee856f6aa1e03d9 | |
| parent | 8ed0d198c504f2c6984de7bcdc07163b89f87ef0 (diff) | |
| download | rockbox-224c6d68f1e7ec889dc6c26e3eec45a65d643421.zip rockbox-224c6d68f1e7ec889dc6c26e3eec45a65d643421.tar.gz rockbox-224c6d68f1e7ec889dc6c26e3eec45a65d643421.tar.bz2 rockbox-224c6d68f1e7ec889dc6c26e3eec45a65d643421.tar.xz | |
stfm1000: comment static unused function
Change-Id: Ie918a07c72bf9086508731faf658d57a286d922a
| -rw-r--r-- | firmware/drivers/tuner/stfm1000.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/drivers/tuner/stfm1000.c b/firmware/drivers/tuner/stfm1000.c index cc1e8f0..4330d06 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) { |