Re: [linux-dvb] little bug in mt2131.c

2007-10-23 Thread Steven Toth
Thierry Merle wrote: > kevin liu a écrit : > >> Dear Stoth: >> I found that in mt2131.c, function mt2131_set_params(), >> line 119 has a little bug: >> ^ >> priv->frequency = (f_lo1 - f_lo2 - MT2131_IF2) * 1000, >> should be >> priv->frequency = (f_l

Re: [linux-dvb] little bug in mt2131.c

2007-10-23 Thread Thierry Merle
kevin liu a écrit : > Dear Stoth: > I found that in mt2131.c, function mt2131_set_params(), > line 119 has a little bug: > ^ > priv->frequency = (f_lo1 - f_lo2 - MT2131_IF2) * 1000, > should be > priv->frequency = (f_lo1 - f_lo2 - MT2131_IF2) * 1000; >

[linux-dvb] little bug in mt2131.c

2007-10-23 Thread kevin liu
Dear Stoth: I found that in mt2131.c, function mt2131_set_params(), line 119 has a little bug: ^ priv->frequency = (f_lo1 - f_lo2 - MT2131_IF2) * 1000, should be priv->frequency = (f_lo1 - f_lo2 - MT2131_IF2) * 1000;