Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 331183
b: refs/heads/master
c: 132f56f
h: refs/heads/master
i:
  331181: df7640b
  331179: 7ad156f
  331175: ca66ee9
  331167: 69258b9
v: v3
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Sep 27, 2012
1 parent 50cf71d commit 9500816
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2347e6836ad2a5a2f7e62bd12b8f52fe15f04f74
refs/heads/master: 132f56fb3c83c032cd75cd99c2967905e65f8684
6 changes: 5 additions & 1 deletion trunk/drivers/media/tuners/fc2580.c
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,11 @@ struct dvb_frontend *fc2580_attach(struct dvb_frontend *fe,

dev_dbg(&priv->i2c->dev, "%s: chip_id=%02x\n", __func__, chip_id);

if ((chip_id != 0x56) && (chip_id != 0x5a)) {
switch (chip_id) {
case 0x56:
case 0x5a:
break;
default:
goto err;
}

Expand Down

0 comments on commit 9500816

Please sign in to comment.