The patch titled i2c-ixp4xx: fix ") != 0))" typo has been removed from the -mm tree. Its filename was i2c-ixp4xx-fix-=-0-typo.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: i2c-ixp4xx: fix ") != 0))" typo From: Alexey Dobriyan <adobriyan@xxxxxxxxxx> i2c_bit_add_bus() returns -E; -E != 0 => err = 1 probe fails with positive error code Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxxx> Cc: Deepak Saxena <dsaxena@xxxxxxxxxx> Acked-by: Jean Delvare <khali@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/i2c/busses/i2c-ixp4xx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/i2c/busses/i2c-ixp4xx.c~i2c-ixp4xx-fix-=-0-typo drivers/i2c/busses/i2c-ixp4xx.c --- a/drivers/i2c/busses/i2c-ixp4xx.c~i2c-ixp4xx-fix-=-0-typo +++ a/drivers/i2c/busses/i2c-ixp4xx.c @@ -137,7 +137,8 @@ static int ixp4xx_i2c_probe(struct platf gpio_line_set(gpio->scl_pin, 0); gpio_line_set(gpio->sda_pin, 0); - if ((err = i2c_bit_add_bus(&drv_data->adapter) != 0)) { + err = i2c_bit_add_bus(&drv_data->adapter); + if (err != 0) printk(KERN_ERR "ERROR: Could not install %s\n", plat_dev->dev.bus_id); kfree(drv_data); _ Patches currently in -mm which might be from adobriyan@xxxxxxxxxx are origin.patch reiserfs-add-missing-d-cache-flushing.patch reiserfs-add-missing-d-cache-flushing-tweak.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html