[linux-dvb] RFC - xc5000 init_fw option is broken for HVR-950q
Michael Krufky
mkrufky at linuxtv.org
Wed Dec 17 05:06:35 CET 2008
Devin,
On Tue, Dec 16, 2008 at 10:31 PM, Devin Heitmueller
<devin.heitmueller at gmail.com> wrote:
> It looks like because the reset callback is set *after* the
> dvb_attach(xc5000...), the if the init_fw option is set the firmware
> load will fail (saying "xc5000: no tuner reset callback function,
> fatal")
>
> We need to be setting the callback *before* the dvb_attach() to handle
> this case.
>
> Let me know if anybody sees anything wrong with this proposed patch,
> otherwise I will submit a pull request.
>
> Thanks,
>
> Devin
>
> diff -r 95d2c94ec371 linux/drivers/media/video/au0828/au0828-dvb.c
> --- a/linux/drivers/media/video/au0828/au0828-dvb.c Tue Dec 16
> 21:35:23 2008 -0500
> +++ b/linux/drivers/media/video/au0828/au0828-dvb.c Tue Dec 16
> 22:27:57 2008 -0500
> @@ -382,6 +382,9 @@
>
> dprintk(1, "%s()\n", __func__);
>
> + /* define general-purpose callback pointer */
> + dvb->frontend->callback = au0828_tuner_callback;
> +
> /* init frontend */
> switch (dev->board) {
> case AU0828_BOARD_HAUPPAUGE_HVR850:
> @@ -431,8 +434,6 @@
> __func__);
> return -1;
> }
> - /* define general-purpose callback pointer */
> - dvb->frontend->callback = au0828_tuner_callback;
>
> /* register everything */
>
> --
> Devin J. Heitmueller
> http://www.devinheitmueller.com
> AIM: devinheitmueller
This patch is fine & correct - Thanks - Please have it merged into master.
Acked-by: Michael Krufky <mkrufky at linuxtv.org>
More information about the linux-dvb
mailing list