Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76763
b: refs/heads/master
c: 1641002
h: refs/heads/master
i:
  76761: 5390953
  76759: bf18f0f
v: v3
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 817f5fe commit c6b0fea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0f2ce9834246519e483e89dbc7225fe1fcbd30a8
refs/heads/master: 1641002bf56c1da265f2c49ea1c29baba997e63b
6 changes: 6 additions & 0 deletions trunk/drivers/media/video/tuner-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,12 @@ static void tuner_i2c_address_check(struct tuner *t)
((t->i2c->addr < 0x64) || (t->i2c->addr > 0x6f)))
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("Support for tuners in i2c address range 0x64 thru 0x6f\n");
tuner_warn("will soon be dropped. This message indicates that your\n");
Expand Down

0 comments on commit c6b0fea

Please sign in to comment.