diff options
author | Michael Krufky <mkrufky@kernellabs.com> | 2009-08-29 16:47:01 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@kernellabs.com> | 2009-08-29 16:47:01 -0400 |
commit | 84ef7918ba16d5b0a533f1592c16e2b2fc94087d (patch) | |
tree | 3effd8907d284e6e3bf3d97736f6e39ba0ba9ac9 | |
parent | 5cef1f7353b35e581dc6da9246c3058c296fec24 (diff) | |
download | mediapointer-dvb-s2-84ef7918ba16d5b0a533f1592c16e2b2fc94087d.tar.gz mediapointer-dvb-s2-84ef7918ba16d5b0a533f1592c16e2b2fc94087d.tar.bz2 |
pvrusb2: disable tda18271 slave tuner output / loop thru in standby mode
From: Michael Krufky <mkrufky@kernellabs.com>
Enable the standby mode optimization to disable the tda18271
slave tuner output / loop thru options when in low power mode
Priority: normal
Signed-off-by: Michael Krufky <mkrufky@kernellabs.com>
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-devattr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-devattr.c b/linux/drivers/media/video/pvrusb2/pvrusb2-devattr.c index 336a20ede..e4d7c13ca 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-devattr.c +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-devattr.c @@ -298,6 +298,7 @@ static struct tda829x_config tda829x_no_probe = { static struct tda18271_config hauppauge_tda18271_dvb_config = { .gate = TDA18271_GATE_ANALOG, + .output_opt = TDA18271_OUTPUT_LT_OFF, }; static int pvr2_tda10048_attach(struct pvr2_dvb_adapter *adap) @@ -393,6 +394,7 @@ static struct tda18271_std_map hauppauge_tda18271_std_map = { static struct tda18271_config hauppauge_tda18271_config = { .std_map = &hauppauge_tda18271_std_map, .gate = TDA18271_GATE_ANALOG, + .output_opt = TDA18271_OUTPUT_LT_OFF, }; static int pvr2_s5h1409_attach(struct pvr2_dvb_adapter *adap) |