From: Jean Delvare Date: Fri, 5 Nov 2010 10:35:35 +0000 (-0300) Subject: [media] BZ#22292: dibx000_common: Restore i2c algo pointer X-Git-Tag: v2.6.37-rc7~5^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c2742da1e590f426e8d85ce4e33b69142245fb8;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git [media] BZ#22292: dibx000_common: Restore i2c algo pointer Commit a90f933507859941c4a58028d7593a80f57895c4 accidentally removed the piece of code setting the i2c algo pointer. Restore it. That's what happens when you put two code statements on the same line... Signed-off-by: Jean Delvare Tested by: Chris Clayton Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/dvb/frontends/dibx000_common.c b/drivers/media/dvb/frontends/dibx000_common.c index a499102..2311c0a 100644 --- a/drivers/media/dvb/frontends/dibx000_common.c +++ b/drivers/media/dvb/frontends/dibx000_common.c @@ -130,6 +130,7 @@ static int i2c_adapter_init(struct i2c_adapter *i2c_adap, struct dibx000_i2c_master *mst) { strncpy(i2c_adap->name, name, sizeof(i2c_adap->name)); + i2c_adap->algo = algo; i2c_adap->algo_data = NULL; i2c_set_adapdata(i2c_adap, mst); if (i2c_add_adapter(i2c_adap) < 0)