Hi Aaro, > > diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c > > index 8b01df3cc8e9..485313d872e5 100644 > > --- a/drivers/i2c/busses/i2c-omap.c > > +++ b/drivers/i2c/busses/i2c-omap.c > > @@ -1472,7 +1472,11 @@ omap_i2c_probe(struct platform_device *pdev) > > } > > > > /* reset ASAP, clearing any IRQs */ > > - omap_i2c_init(omap); > > + r = omap_i2c_init(omap); > > + if (r) { > > + dev_err(omap->dev, "failure to initialize i2c: %d\n", r); > > Error paths in omap_i2c_init already print a message and error code, > so this is log is redundant. Good point! I will take care of it, no need to send a v2. Thanks, Andi