]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
V4L/DVB (7323): pvrusb2: set default video standard to NTSC for OnAir HDTV / Creator
authorMichael Krufky <mkrufky@linuxtv.org>
Tue, 22 Apr 2008 17:45:45 +0000 (14:45 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Thu, 24 Apr 2008 17:07:48 +0000 (14:07 -0300)
The pvrusb2 driver normally picks up the default video standard from the
eeprom on Hauppauge devices, but the OnAir HDTV and OnAir Creator are not
Hauppauge devices, and do not store this information in any eeprom.

These devices support NTSC/ATSC, so we should use NTSC by default when in
analog mode.

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/pvrusb2/pvrusb2-devattr.c

index 1edb066142b4dfa620b5049f43b32f9531d218b4..17f461a78f139b804c41ad99beada6309f9290b7 100644 (file)
@@ -164,6 +164,7 @@ static const struct pvr2_device_desc pvr2_device_onair_creator = {
                .flag_has_svideo = !0,
                .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
                .digital_control_scheme = PVR2_DIGITAL_SCHEME_ONAIR,
+               .default_std_mask = V4L2_STD_NTSC_M,
 };
 #endif
 
@@ -190,6 +191,7 @@ static const struct pvr2_device_desc pvr2_device_onair_usb2 = {
                .flag_has_svideo = !0,
                .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
                .digital_control_scheme = PVR2_DIGITAL_SCHEME_ONAIR,
+               .default_std_mask = V4L2_STD_NTSC_M,
 };
 #endif