Commit 1641002b authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab

V4L/DVB (7056): tuner: suppress obsolete tuner i2c address warning for XC5000 tuners

We already know that the XC5000 tuner can only be located at
i2c address 0x61, 0x62, 0x63 or 0x64

We shouldn't display this warning if the XC5000 tuner is present.
Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 0f2ce983
...@@ -297,6 +297,12 @@ static void tuner_i2c_address_check(struct tuner *t) ...@@ -297,6 +297,12 @@ static void tuner_i2c_address_check(struct tuner *t)
((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f))) ((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
return; return;
/* We already know that the XC5000 can only be located at
* i2c address 0x61, 0x62, 0x63 or 0x64 */
if ((t->type == TUNER_XC5000) &&
((t->i2c->addr <= 0x64)) && (t->i2c->addr >= 0x61))
return;
tuner_warn("====================== WARNING! ======================\n"); tuner_warn("====================== WARNING! ======================\n");
tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n"); tuner_warn("Support for tuners in i2c address range 0x64 thru 0x6f\n");
tuner_warn("will soon be dropped. This message indicates that your\n"); tuner_warn("will soon be dropped. This message indicates that your\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment