--- linux-2.6.16.16/drivers/sbus/char/bbc_i2c.c 2006-05-10 22:56:24.000000000 -0300 +++ linux-2.6.17-rc4/drivers/sbus/char/bbc_i2c.c 2006-05-11 20:31:53.000000000 -0300 @@ -440,7 +440,8 @@ struct linux_ebus_device *edev = NULL; int err, index = 0; - if (tlb_type != cheetah || !bbc_present()) + if ((tlb_type != cheetah && tlb_type != cheetah_plus) || + !bbc_present()) return -ENODEV; for_each_ebus(ebus) { @@ -486,3 +487,4 @@ module_init(bbc_i2c_init); module_exit(bbc_i2c_cleanup); +MODULE_LICENSE("GPL");