Skip to content

Commit

Permalink
V4L/DVB (4523): Fix a warning caused by a typo (comma instead of dot-…
Browse files Browse the repository at this point in the history
…comma)

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Mauro Carvalho Chehab committed Sep 26, 2006
1 parent 1450e6b commit 1e805e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/frontends/dibx000_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static int dibx000_i2c_gated_tuner_xfer(struct i2c_adapter *i2c_adap, struct i2c
struct i2c_msg m[2 + num];
u8 tx_open[4], tx_close[4];

memset(m,0, sizeof(struct i2c_msg) * (2 + num)),
memset(m,0, sizeof(struct i2c_msg) * (2 + num));

dibx000_i2c_select_interface(mst, DIBX000_I2C_INTERFACE_TUNER);

Expand Down

0 comments on commit 1e805e6

Please sign in to comment.