diff options
Diffstat (limited to 'drivers/media/video/ivtv/ivtv-driver.c')
-rw-r--r-- | drivers/media/video/ivtv/ivtv-driver.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-driver.c b/drivers/media/video/ivtv/ivtv-driver.c index 9a250548be4d..1b79475ca134 100644 --- a/drivers/media/video/ivtv/ivtv-driver.c +++ b/drivers/media/video/ivtv/ivtv-driver.c | |||
@@ -1293,7 +1293,6 @@ int ivtv_init_on_first_open(struct ivtv *itv) | |||
1293 | ivtv_call_hw(itv, IVTV_HW_SAA7127, video, s_stream, 1); | 1293 | ivtv_call_hw(itv, IVTV_HW_SAA7127, video, s_stream, 1); |
1294 | ivtv_init_mpeg_decoder(itv); | 1294 | ivtv_init_mpeg_decoder(itv); |
1295 | } | 1295 | } |
1296 | ivtv_s_std(NULL, &fh, &itv->tuner_std); | ||
1297 | 1296 | ||
1298 | /* On a cx23416 this seems to be able to enable DMA to the chip? */ | 1297 | /* On a cx23416 this seems to be able to enable DMA to the chip? */ |
1299 | if (!itv->has_cx23415) | 1298 | if (!itv->has_cx23415) |
@@ -1310,6 +1309,10 @@ int ivtv_init_on_first_open(struct ivtv *itv) | |||
1310 | } | 1309 | } |
1311 | else | 1310 | else |
1312 | ivtv_clear_irq_mask(itv, IVTV_IRQ_MASK_INIT); | 1311 | ivtv_clear_irq_mask(itv, IVTV_IRQ_MASK_INIT); |
1312 | |||
1313 | /* For cards with video out, this call needs interrupts enabled */ | ||
1314 | ivtv_s_std(NULL, &fh, &itv->tuner_std); | ||
1315 | |||
1313 | return 0; | 1316 | return 0; |
1314 | } | 1317 | } |
1315 | 1318 | ||