aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/pvrusb2/pvrusb2-encoder.c
diff options
context:
space:
mode:
authorMike Isely <isely@pobox.com>2008-04-22 13:45:42 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:07:48 -0400
commit40381cb02fb7fc0b46c55e3a71325b5d930580fa (patch)
treea2654ff76b947f1aa3dcee9bc4ad77e7504d022b /drivers/media/video/pvrusb2/pvrusb2-encoder.c
parentc55a97d7538d5f3abbee5486e37e56e896478fbd (diff)
V4L/DVB (7313): pvrusb2: Make LED control into a device-specific attribute
The pvrusb2 driver has used hardcoded logic to control the LED on the device. However this is really Hauppauge-specific behavior. This change defines a new device attribute for LED control and sets things up appropriately for Hauppauge devices. Signed-off-by: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/pvrusb2/pvrusb2-encoder.c')
-rw-r--r--drivers/media/video/pvrusb2/pvrusb2-encoder.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-encoder.c b/drivers/media/video/pvrusb2/pvrusb2-encoder.c
index ccb5d14ddf85..324d1bd8500d 100644
--- a/drivers/media/video/pvrusb2/pvrusb2-encoder.c
+++ b/drivers/media/video/pvrusb2/pvrusb2-encoder.c
@@ -480,8 +480,6 @@ int pvr2_encoder_start(struct pvr2_hdw *hdw)
480 /* unmask some interrupts */ 480 /* unmask some interrupts */
481 pvr2_write_register(hdw, 0x0048, 0xbfffffff); 481 pvr2_write_register(hdw, 0x0048, 0xbfffffff);
482 482
483 pvr2_led_ctrl(hdw, 1);
484
485 pvr2_encoder_vcmd(hdw,CX2341X_ENC_MUTE_VIDEO,1, 483 pvr2_encoder_vcmd(hdw,CX2341X_ENC_MUTE_VIDEO,1,
486 hdw->input_val == PVR2_CVAL_INPUT_RADIO ? 1 : 0); 484 hdw->input_val == PVR2_CVAL_INPUT_RADIO ? 1 : 0);
487 485
@@ -524,8 +522,6 @@ int pvr2_encoder_stop(struct pvr2_hdw *hdw)
524 break; 522 break;
525 } 523 }
526 524
527 pvr2_led_ctrl(hdw, 0);
528
529 return status; 525 return status;
530} 526}
531 527