diff options
Diffstat (limited to 'drivers/media/video/pvrusb2/pvrusb2-video-v4l.c')
-rw-r--r-- | drivers/media/video/pvrusb2/pvrusb2-video-v4l.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-video-v4l.c b/drivers/media/video/pvrusb2/pvrusb2-video-v4l.c index ce8332dd9cc9..b3862f5554bd 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-video-v4l.c +++ b/drivers/media/video/pvrusb2/pvrusb2-video-v4l.c | |||
@@ -54,11 +54,22 @@ static const int routing_scheme0[] = { | |||
54 | [PVR2_CVAL_INPUT_SVIDEO] = SAA7115_SVIDEO2, | 54 | [PVR2_CVAL_INPUT_SVIDEO] = SAA7115_SVIDEO2, |
55 | }; | 55 | }; |
56 | 56 | ||
57 | static const int routing_scheme1[] = { | ||
58 | [PVR2_CVAL_INPUT_TV] = SAA7115_COMPOSITE4, | ||
59 | [PVR2_CVAL_INPUT_RADIO] = SAA7115_COMPOSITE5, | ||
60 | [PVR2_CVAL_INPUT_COMPOSITE] = SAA7115_COMPOSITE3, | ||
61 | [PVR2_CVAL_INPUT_SVIDEO] = SAA7115_SVIDEO2, /* or SVIDEO0, it seems */ | ||
62 | }; | ||
63 | |||
57 | static const struct routing_scheme routing_schemes[] = { | 64 | static const struct routing_scheme routing_schemes[] = { |
58 | [PVR2_ROUTING_SCHEME_HAUPPAUGE] = { | 65 | [PVR2_ROUTING_SCHEME_HAUPPAUGE] = { |
59 | .def = routing_scheme0, | 66 | .def = routing_scheme0, |
60 | .cnt = ARRAY_SIZE(routing_scheme0), | 67 | .cnt = ARRAY_SIZE(routing_scheme0), |
61 | }, | 68 | }, |
69 | [PVR2_ROUTING_SCHEME_ONAIR] = { | ||
70 | .def = routing_scheme1, | ||
71 | .cnt = ARRAY_SIZE(routing_scheme1), | ||
72 | }, | ||
62 | }; | 73 | }; |
63 | 74 | ||
64 | void pvr2_saa7115_subdev_update(struct pvr2_hdw *hdw, struct v4l2_subdev *sd) | 75 | void pvr2_saa7115_subdev_update(struct pvr2_hdw *hdw, struct v4l2_subdev *sd) |