diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-02-09 23:35:21 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-02-09 23:35:21 -0500 |
commit | 254ef7f974a59fbf4834c0a19add07531a9bf4dd (patch) | |
tree | 04a9c83e8244c1ef4b960647559c1ee4a7ee3d39 /linux/drivers/media/dvb/b2c2 | |
parent | 6ded7c2f0a2e6b7858b850ec736c5558256f8ad9 (diff) | |
download | mediapointer-dvb-s2-254ef7f974a59fbf4834c0a19add07531a9bf4dd.tar.gz mediapointer-dvb-s2-254ef7f974a59fbf4834c0a19add07531a9bf4dd.tar.bz2 |
drivers/media/dvb/frontends/mt312.c: cleanups
From: Adrian Bunk <bunk@stusta.de>
This patch contains the following possible cleanups:
- update the Kconfig help to mention the VP310
- merge vp310_attach and mt312_attach into a new vp310_mt312_attach
to remove some code duplication
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/b2c2')
-rw-r--r-- | linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c b/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c index e5ba1d323..26aa3a58b 100644 --- a/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c +++ b/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c @@ -475,7 +475,7 @@ int flexcop_frontend_init(struct flexcop_device *fc) info("found the stv0297 at i2c address: 0x%02x",alps_tdee4_stv0297_config.demod_address); } else /* try the sky v2.3 (vp310/Samsung tbdu18132(tsa5059)) */ - if ((fc->fe = vp310_attach(&skystar23_samsung_tbdu18132_config, &fc->i2c_adap)) != NULL) { + if ((fc->fe = vp310_mt312_attach(&skystar23_samsung_tbdu18132_config, &fc->i2c_adap)) != NULL) { ops = fc->fe->ops; ops->diseqc_send_master_cmd = flexcop_diseqc_send_master_cmd; |