stfm1000: comment static unused function

Change-Id: Ie918a07c72bf9086508731faf658d57a286d922a
This commit is contained in:
Amaury Pouly 2013-01-15 19:49:52 +00:00
parent 8ed0d198c5
commit 224c6d68f1

View file

@ -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)
{