diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-05-05 11:15:57 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2007-05-05 11:15:57 -0400 |
commit | a9131e180377070115d9d7d1aa4e76c5906a81fd (patch) | |
tree | c64a2929257f533215923206f999d15785962700 /linux/drivers/media/video/cx88 | |
parent | 9e77d37f02dfdf40e28145025105c9b0d8466a21 (diff) | |
download | mediapointer-dvb-s2-a9131e180377070115d9d7d1aa4e76c5906a81fd.tar.gz mediapointer-dvb-s2-a9131e180377070115d9d7d1aa4e76c5906a81fd.tar.bz2 |
tuv1236d: move rf input switching code into dvb-pll
From: Michael Krufky <mkrufky@linuxtv.org>
This patch removes duplicate code from cx88-dvb and saa7134-dvb that handles
rf input switching for the TUV1236d tuner. The functionality is added to
dvb-pll, where all the other code that handles the TUV1236d is kept.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Diffstat (limited to 'linux/drivers/media/video/cx88')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-dvb.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-dvb.c b/linux/drivers/media/video/cx88/cx88-dvb.c index 24174f4cb..f21156f07 100644 --- a/linux/drivers/media/video/cx88/cx88-dvb.c +++ b/linux/drivers/media/video/cx88/cx88-dvb.c @@ -369,18 +369,8 @@ static int nxt200x_set_ts_param(struct dvb_frontend* fe, int is_punctured) return 0; } -static int nxt200x_set_pll_input(u8* buf, int input) -{ - if (input) - buf[3] |= 0x08; - else - buf[3] &= ~0x08; - return 0; -} - static struct nxt200x_config ati_hdtvwonder = { .demod_address = 0x0a, - .set_pll_input = nxt200x_set_pll_input, .set_ts_params = nxt200x_set_ts_param, }; |