diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-08-23 15:51:43 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-09-26 11:30:34 -0400 |
commit | 1e805e679a4e92099c62cc952cd668a6c683e849 (patch) | |
tree | c2cdd803e99cc0fcca36623bb1ef601c417c89a1 | |
parent | 1450e6bedc58c731617d99b4670070ed3ccc91b4 (diff) |
V4L/DVB (4523): Fix a warning caused by a typo (comma instead of dot-comma)
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/dvb/frontends/dibx000_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/dibx000_common.c b/drivers/media/dvb/frontends/dibx000_common.c index 61d28de30305..a18c8f45a2ee 100644 --- a/drivers/media/dvb/frontends/dibx000_common.c +++ b/drivers/media/dvb/frontends/dibx000_common.c | |||
@@ -63,7 +63,7 @@ static int dibx000_i2c_gated_tuner_xfer(struct i2c_adapter *i2c_adap, struct i2c | |||
63 | struct i2c_msg m[2 + num]; | 63 | struct i2c_msg m[2 + num]; |
64 | u8 tx_open[4], tx_close[4]; | 64 | u8 tx_open[4], tx_close[4]; |
65 | 65 | ||
66 | memset(m,0, sizeof(struct i2c_msg) * (2 + num)), | 66 | memset(m,0, sizeof(struct i2c_msg) * (2 + num)); |
67 | 67 | ||
68 | dibx000_i2c_select_interface(mst, DIBX000_I2C_INTERFACE_TUNER); | 68 | dibx000_i2c_select_interface(mst, DIBX000_I2C_INTERFACE_TUNER); |
69 | 69 | ||