diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-08-23 16:51:43 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-08-23 16:51:43 -0300 |
commit | 1f843421759ab9e7ac26c7522706581dde649d43 (patch) | |
tree | 5c6696bfd0c5a19000176162d9a59e8ae04d0829 /linux | |
parent | eb51d7285165433b1bebef0e8366c04965bce1f5 (diff) | |
download | mediapointer-dvb-s2-1f843421759ab9e7ac26c7522706581dde649d43.tar.gz mediapointer-dvb-s2-1f843421759ab9e7ac26c7522706581dde649d43.tar.bz2 |
Fix a warning caused by a typo (comma instead of dot-comma)
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/dvb/frontends/dibx000_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/dibx000_common.c b/linux/drivers/media/dvb/frontends/dibx000_common.c index bdc6d7a7d..1f6dc06a3 100644 --- a/linux/drivers/media/dvb/frontends/dibx000_common.c +++ b/linux/drivers/media/dvb/frontends/dibx000_common.c @@ -85,7 +85,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); |