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 <khali@xxxxxxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxx> --- Sorry about this, I didn't notice this uncommon construct when writing the initial patch. This should go to Linus ASAP. drivers/media/dvb/frontends/dibx000_common.c | 1 + 1 file changed, 1 insertion(+) --- linux-2.6.37-rc1.orig/drivers/media/dvb/frontends/dibx000_common.c 2010-11-02 09:19:35.000000000 +0100 +++ linux-2.6.37-rc1/drivers/media/dvb/frontends/dibx000_common.c 2010-11-05 11:13:48.000000000 +0100 @@ -130,6 +130,7 @@ static int i2c_adapter_init(struct i2c_a 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) -- Jean Delvare -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html