aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c
diff options
context:
space:
mode:
authorMike Isely <isely@pobox.com>2006-12-27 21:14:54 -0500
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-02-21 10:34:24 -0500
commitf5156b06acaad13b74f72bf62025de7b76b1b8a4 (patch)
tree0fafb526df9a1d3f3a982b04aa1538ae9992104a /drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c
parent98752102dccfd3f1bb3eac3d7833c9b38ac22fef (diff)
V4L/DVB (5043): Pvrusb2: video standard broadcast fix for radio mode
Ensure we don't accidentally broadcast the standard while in radio mode. 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-i2c-chips-v4l2.c')
-rw-r--r--drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c b/drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c
index 93b8d077c11e..05121666b9ba 100644
--- a/drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c
+++ b/drivers/media/video/pvrusb2/pvrusb2-i2c-chips-v4l2.c
@@ -39,7 +39,6 @@
39#define OP_AUDIORATE 4 39#define OP_AUDIORATE 4
40#define OP_SIZE 5 40#define OP_SIZE 5
41#define OP_LOG 6 41#define OP_LOG 6
42#define OP_RADIO 7
43 42
44static const struct pvr2_i2c_op * const ops[] = { 43static const struct pvr2_i2c_op * const ops[] = {
45 [OP_STANDARD] = &pvr2_i2c_op_v4l2_standard, 44 [OP_STANDARD] = &pvr2_i2c_op_v4l2_standard,
@@ -48,7 +47,6 @@ static const struct pvr2_i2c_op * const ops[] = {
48 [OP_FREQ] = &pvr2_i2c_op_v4l2_frequency, 47 [OP_FREQ] = &pvr2_i2c_op_v4l2_frequency,
49 [OP_SIZE] = &pvr2_i2c_op_v4l2_size, 48 [OP_SIZE] = &pvr2_i2c_op_v4l2_size,
50 [OP_LOG] = &pvr2_i2c_op_v4l2_log, 49 [OP_LOG] = &pvr2_i2c_op_v4l2_log,
51 [OP_RADIO] = &pvr2_i2c_op_v4l2_radio,
52}; 50};
53 51
54void pvr2_i2c_probe(struct pvr2_hdw *hdw,struct pvr2_i2c_client *cp) 52void pvr2_i2c_probe(struct pvr2_hdw *hdw,struct pvr2_i2c_client *cp)
@@ -60,8 +58,7 @@ void pvr2_i2c_probe(struct pvr2_hdw *hdw,struct pvr2_i2c_client *cp)
60 (1 << OP_VOLUME) | 58 (1 << OP_VOLUME) |
61 (1 << OP_FREQ) | 59 (1 << OP_FREQ) |
62 (1 << OP_SIZE) | 60 (1 << OP_SIZE) |
63 (1 << OP_LOG) | 61 (1 << OP_LOG));
64 (1 << OP_RADIO));
65 62
66 if (id == I2C_DRIVERID_MSP3400) { 63 if (id == I2C_DRIVERID_MSP3400) {
67 if (pvr2_i2c_msp3400_setup(hdw,cp)) { 64 if (pvr2_i2c_msp3400_setup(hdw,cp)) {