Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] cx88-dvb: fix nxt200x rf input switching

After dvb tuner refactoring, the pllbuff has been altered such that the pll
address is now stored in buf[0]. Instead of sending buf to set_pll_input,
we should send buf+1.

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
Cc: Ivan Andrewjeski <ivan@fiero-gt.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Michael Krufky and committed by
Linus Torvalds
f5ae29e2 d9a5c0a4

+2 -2
+2 -2
drivers/media/dvb/frontends/nxt200x.c
··· 562 562 563 563 /* set input */ 564 564 if (state->config->set_pll_input) 565 - state->config->set_pll_input(buf, 1); 565 + state->config->set_pll_input(buf+1, 1); 566 566 break; 567 567 case VSB_8: 568 568 /* Set non-punctured clock for VSB */ ··· 571 571 572 572 /* set input */ 573 573 if (state->config->set_pll_input) 574 - state->config->set_pll_input(buf, 0); 574 + state->config->set_pll_input(buf+1, 0); 575 575 break; 576 576 default: 577 577 return -EINVAL;