Commit ba7d457d authored by David Wong's avatar David Wong Committed by Mauro Carvalho Chehab

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: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 1e743938
...@@ -37,14 +37,14 @@ ...@@ -37,14 +37,14 @@
} while (0) } while (0)
static int debug; static int debug;
static int fake_signal_str; static int fake_signal_str = 1;
module_param(debug, int, 0644); module_param(debug, int, 0644);
MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off).");
module_param(fake_signal_str, int, 0644); module_param(fake_signal_str, int, 0644);
MODULE_PARM_DESC(fake_signal_str, "fake signal strength for LGS8913." MODULE_PARM_DESC(fake_signal_str, "fake signal strength for LGS8913."
"Signal strength calculation is slow.(default:off)."); "Signal strength calculation is slow.(default:on).");
/* LGS8GXX internal helper functions */ /* LGS8GXX internal helper functions */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment