aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2006-03-28 18:32:52 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-04-02 04:55:47 -0300
commitdc555aa63c798af097f5c303bcf72a8390b03da5 (patch)
tree72d755f7c28923519834048a765c92292c187596 /drivers
parentV4L/DVB (3661): Add wm8739 stereo audio ADC i2c driver (diff)
downloadlinux-dev-dc555aa63c798af097f5c303bcf72a8390b03da5.tar.xz
linux-dev-dc555aa63c798af097f5c303bcf72a8390b03da5.zip
V4L/DVB (3662): Don't set msp3400c-non-existent register
The driver tried to set a register that is not present on msp3400c devices. Add the missing test. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/video/msp3400-driver.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/msp3400-driver.c b/drivers/media/video/msp3400-driver.c
index c40e8ba9a2ea..12a83ec7872c 100644
--- a/drivers/media/video/msp3400-driver.c
+++ b/drivers/media/video/msp3400-driver.c
@@ -279,7 +279,8 @@ void msp_set_scart(struct i2c_client *client, int in, int out)
msp_write_dsp(client, 0x13, state->acb);
/* Sets I2S speed 0 = 1.024 Mbps, 1 = 2.048 Mbps */
- msp_write_dem(client, 0x40, state->i2s_mode);
+ if (state->has_i2s_conf)
+ msp_write_dem(client, 0x40, state->i2s_mode);
}
void msp_set_mute(struct i2c_client *client)