diff options
author | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 20:25:20 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 20:25:20 +0300 |
commit | b060c25f70adb20532dacefa72029d1d2db1a7f1 (patch) | |
tree | ac75243ccd4f5c2bce2ed8ad9d8b5ddee624fda8 /drivers/media/video/msp3400.c | |
parent | b5b8ab8d93ec46fec279b22eb1a613be18f49f7a (diff) | |
download | linux-b060c25f70adb20532dacefa72029d1d2db1a7f1.tar.xz |
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/msp3400.c')
-rw-r--r-- | drivers/media/video/msp3400.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/media/video/msp3400.c b/drivers/media/video/msp3400.c index 546e3f0067fe..1bf0fb38b918 100644 --- a/drivers/media/video/msp3400.c +++ b/drivers/media/video/msp3400.c @@ -2336,13 +2336,9 @@ static int msp_detach(struct i2c_client *client) static int msp_probe(struct i2c_adapter *adap) { -#ifdef I2C_CLASS_TV_ANALOG if (adap->class & I2C_CLASS_TV_ANALOG) return i2c_probe(adap, &addr_data, msp_attach); return 0; -#else - return i2c_probe(adap, &addr_data, msp_attach); -#endif } static int __init msp3400_init_module(void) |