diff options
Diffstat (limited to 'drivers/media/video/tvaudio.c')
-rw-r--r-- | drivers/media/video/tvaudio.c | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/drivers/media/video/tvaudio.c b/drivers/media/video/tvaudio.c index 41b635e0d3c6..9a493bea76d8 100644 --- a/drivers/media/video/tvaudio.c +++ b/drivers/media/video/tvaudio.c | |||
@@ -285,7 +285,6 @@ static int chip_thread(void *data) | |||
285 | schedule(); | 285 | schedule(); |
286 | } | 286 | } |
287 | remove_wait_queue(&chip->wq, &wait); | 287 | remove_wait_queue(&chip->wq, &wait); |
288 | try_to_freeze(PF_FREEZE); | ||
289 | if (chip->done || signal_pending(current)) | 288 | if (chip->done || signal_pending(current)) |
290 | break; | 289 | break; |
291 | dprintk("%s: thread wakeup\n", i2c_clientname(&chip->c)); | 290 | dprintk("%s: thread wakeup\n", i2c_clientname(&chip->c)); |
@@ -1237,17 +1236,17 @@ static int ta8874z_checkit(struct CHIPSTATE *chip) | |||
1237 | /* audio chip descriptions - struct CHIPDESC */ | 1236 | /* audio chip descriptions - struct CHIPDESC */ |
1238 | 1237 | ||
1239 | /* insmod options to enable/disable individual audio chips */ | 1238 | /* insmod options to enable/disable individual audio chips */ |
1240 | int tda8425 = 1; | 1239 | static int tda8425 = 1; |
1241 | int tda9840 = 1; | 1240 | static int tda9840 = 1; |
1242 | int tda9850 = 1; | 1241 | static int tda9850 = 1; |
1243 | int tda9855 = 1; | 1242 | static int tda9855 = 1; |
1244 | int tda9873 = 1; | 1243 | static int tda9873 = 1; |
1245 | int tda9874a = 1; | 1244 | static int tda9874a = 1; |
1246 | int tea6300 = 0; // address clash with msp34xx | 1245 | static int tea6300 = 0; // address clash with msp34xx |
1247 | int tea6320 = 0; // address clash with msp34xx | 1246 | static int tea6320 = 0; // address clash with msp34xx |
1248 | int tea6420 = 1; | 1247 | static int tea6420 = 1; |
1249 | int pic16c54 = 1; | 1248 | static int pic16c54 = 1; |
1250 | int ta8874z = 0; // address clash with tda9840 | 1249 | static int ta8874z = 0; // address clash with tda9840 |
1251 | 1250 | ||
1252 | module_param(tda8425, int, 0444); | 1251 | module_param(tda8425, int, 0444); |
1253 | module_param(tda9840, int, 0444); | 1252 | module_param(tda9840, int, 0444); |