diff options
author | David Wong <davidtlwong@gmail.com> | 2009-06-11 08:38:54 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 18:07:55 -0400 |
commit | ba7d457dd352fdc598d9dae733f8d53ace34c9da (patch) | |
tree | 775c28a1c1584ef6e727f0e063c887d4e95a432c /drivers/media/dvb/frontends | |
parent | 1e7439388a5aa6decf76ac1d73d5312fe713e6af (diff) |
V4L/DVB (12000): lgs8gxx: lgs8913 fake signal strength option default on
lgs8gxx: lgs8913 fake signal strength option default on. Original
calculation is too slow.
Signed-off-by: David T.L. Wong <davidtlwong <at> gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends')
-rw-r--r-- | drivers/media/dvb/frontends/lgs8gxx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/lgs8gxx.c b/drivers/media/dvb/frontends/lgs8gxx.c index f9785dfe735b..da689ce9095c 100644 --- a/drivers/media/dvb/frontends/lgs8gxx.c +++ b/drivers/media/dvb/frontends/lgs8gxx.c | |||
@@ -37,14 +37,14 @@ | |||
37 | } while (0) | 37 | } while (0) |
38 | 38 | ||
39 | static int debug; | 39 | static int debug; |
40 | static int fake_signal_str; | 40 | static int fake_signal_str = 1; |
41 | 41 | ||
42 | module_param(debug, int, 0644); | 42 | module_param(debug, int, 0644); |
43 | MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); | 43 | MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); |
44 | 44 | ||
45 | module_param(fake_signal_str, int, 0644); | 45 | module_param(fake_signal_str, int, 0644); |
46 | MODULE_PARM_DESC(fake_signal_str, "fake signal strength for LGS8913." | 46 | MODULE_PARM_DESC(fake_signal_str, "fake signal strength for LGS8913." |
47 | "Signal strength calculation is slow.(default:off)."); | 47 | "Signal strength calculation is slow.(default:on)."); |
48 | 48 | ||
49 | /* LGS8GXX internal helper functions */ | 49 | /* LGS8GXX internal helper functions */ |
50 | 50 | ||