diff options
author | Maxim Levitsky <maximlevitsky@gmail.com> | 2007-09-27 19:34:25 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 23:02:59 -0400 |
commit | cb71201f20e43581857043a1f856fb61ce44bdf8 (patch) | |
tree | fc16d5eebc8dbf48d0dcb7b0c0eb35609a5231d7 /drivers/media/video/saa7134/saa7134-tvaudio.c | |
parent | f5a1ac64cc444cf19c8817d61a410b70bbb619d9 (diff) |
V4L/DVB (6271): V4L: Add basic support for suspend/resume for saa7134
This adds support for suspend/resume for core of saa7134
Should fix bug#7220
Signed-off-by: Maxim Levitsky <maximlevitsky@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/saa7134/saa7134-tvaudio.c')
-rw-r--r-- | drivers/media/video/saa7134/saa7134-tvaudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/saa7134/saa7134-tvaudio.c b/drivers/media/video/saa7134/saa7134-tvaudio.c index 43501b5dc05b..df2dab06387d 100644 --- a/drivers/media/video/saa7134/saa7134-tvaudio.c +++ b/drivers/media/video/saa7134/saa7134-tvaudio.c | |||
@@ -231,7 +231,7 @@ static void mute_input_7134(struct saa7134_dev *dev) | |||
231 | } | 231 | } |
232 | 232 | ||
233 | if (dev->hw_mute == mute && | 233 | if (dev->hw_mute == mute && |
234 | dev->hw_input == in) { | 234 | dev->hw_input == in && !dev->force_mute_update) { |
235 | dprintk("mute/input: nothing to do [mute=%d,input=%s]\n", | 235 | dprintk("mute/input: nothing to do [mute=%d,input=%s]\n", |
236 | mute,in->name); | 236 | mute,in->name); |
237 | return; | 237 | return; |
@@ -876,7 +876,7 @@ static int tvaudio_thread_ddep(void *data) | |||
876 | /* ------------------------------------------------------------------ */ | 876 | /* ------------------------------------------------------------------ */ |
877 | /* common stuff + external entry points */ | 877 | /* common stuff + external entry points */ |
878 | 878 | ||
879 | static void saa7134_enable_i2s(struct saa7134_dev *dev) | 879 | void saa7134_enable_i2s(struct saa7134_dev *dev) |
880 | { | 880 | { |
881 | int i2s_format; | 881 | int i2s_format; |
882 | 882 | ||