fix red again

Change-Id: I8e7ccbcf8a856bc3e08145a795695fb675794495
This commit is contained in:
Mihail Zenkov 2016-04-06 00:17:59 +00:00
parent c5c4ea4648
commit f791f5ef78
2 changed files with 6 additions and 12 deletions

View file

@ -76,9 +76,9 @@ int ascodec_read(unsigned int reg)
return i2c_readbyte(AS3514_I2C_ADDR, reg);
}
int ascodec_readbytes(unsigned int addr, unsigned int len, unsigned char *data)
void ascodec_readbytes(unsigned int addr, unsigned int len, unsigned char *data)
{
return i2c_readbytes(AS3514_I2C_ADDR, addr, len, data);
void i2c_readbytes(AS3514_I2C_ADDR, addr, len, data);
}
void ascodec_lock(void)