Hi, ... > > diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c > > index f751d231ded8..cbf66a69e20b 100644 > > --- a/drivers/i2c/busses/i2c-imx.c > > +++ b/drivers/i2c/busses/i2c-imx.c > > @@ -534,20 +534,18 @@ static int i2c_imx_bus_busy(struct imx_i2c_struct *i2c_imx, int for_busy, bool a > > { > > unsigned long orig_jiffies = jiffies; > > unsigned int temp; > > - > > - if (!i2c_imx->multi_master) > > - return 0; > > + bool multi_master = i2c_imx->multi_master; > > Move "bool multi_master = i2c_imx->multi_master;" before > "unsigned long orig_jiffies = jiffies;" to keep reverse christmas tree > order. I will take care of it. Thanks, Stefan. Andi