tea5760uk: use correct i2c address on the Creative
Actually 0x20 is the right address, the 0x22 applies to the meizu which probably use a Chinese clone with a non-spec compliant address. Change-Id: I65b9ab6477c07a2293226536db3e696d34d3bc2c
This commit is contained in:
parent
a0728672bf
commit
7a65710836
1 changed files with 4 additions and 0 deletions
|
@ -29,7 +29,11 @@
|
|||
#include "fmradio.h"
|
||||
#include "fmradio_i2c.h" /* physical interface driver */
|
||||
|
||||
#if defined(CREATIVE_ZENMOZAIC) || defined(CREATIVE_ZEN) || defined(CREATIVE_ZENXFI)
|
||||
#define I2C_ADR 0x20
|
||||
#else
|
||||
#define I2C_ADR 0x22
|
||||
#endif
|
||||
|
||||
/* define RSSI range */
|
||||
#define RSSI_MIN 4
|
||||
|
|
Loading…
Reference in a new issue