diff options
author | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 12:25:20 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 12:25:20 -0500 |
commit | b060c25f70adb20532dacefa72029d1d2db1a7f1 (patch) | |
tree | ac75243ccd4f5c2bce2ed8ad9d8b5ddee624fda8 /drivers/media/video/tvaudio.c | |
parent | b5b8ab8d93ec46fec279b22eb1a613be18f49f7a (diff) |
V4L/DVB (3123a): remove uneeded #if from V4L subsystem
- some uneeded #if were introduced by a previous patch.
this patch removes these.
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'drivers/media/video/tvaudio.c')
-rw-r--r-- | drivers/media/video/tvaudio.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/media/video/tvaudio.c b/drivers/media/video/tvaudio.c index 0292c5abf14a..19625e6410d1 100644 --- a/drivers/media/video/tvaudio.c +++ b/drivers/media/video/tvaudio.c | |||
@@ -1563,17 +1563,8 @@ static int chip_probe(struct i2c_adapter *adap) | |||
1563 | because dedicated drivers are used */ | 1563 | because dedicated drivers are used */ |
1564 | if ((adap->id == I2C_HW_SAA7146)) | 1564 | if ((adap->id == I2C_HW_SAA7146)) |
1565 | return 0; | 1565 | return 0; |
1566 | #ifdef I2C_CLASS_TV_ANALOG | ||
1567 | if (adap->class & I2C_CLASS_TV_ANALOG) | 1566 | if (adap->class & I2C_CLASS_TV_ANALOG) |
1568 | return i2c_probe(adap, &addr_data, chip_attach); | 1567 | return i2c_probe(adap, &addr_data, chip_attach); |
1569 | #else | ||
1570 | switch (adap->id) { | ||
1571 | case I2C_HW_B_BT848: | ||
1572 | case I2C_HW_B_RIVA: | ||
1573 | case I2C_HW_SAA7134: | ||
1574 | return i2c_probe(adap, &addr_data, chip_attach); | ||
1575 | } | ||
1576 | #endif | ||
1577 | return 0; | 1568 | return 0; |
1578 | } | 1569 | } |
1579 | 1570 | ||