Hi Wolfram, On 14/02/2020 14:58, Wolfram Sang wrote: > We already have the master device in a variable, reuse it. > > Signed-off-by: Wolfram Sang <wsa+renesas@xxxxxxxxxxxxxxxxxxxx> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@xxxxxxxxxxxxxxxx> > --- > > Found while refactoring of_i2c_get_board_info() and checking its users. > > drivers/i3c/master.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/i3c/master.c b/drivers/i3c/master.c > index 7f8f896fa0c3..b56207bbed2b 100644 > --- a/drivers/i3c/master.c > +++ b/drivers/i3c/master.c > @@ -1953,7 +1953,7 @@ of_i3c_master_add_i2c_boardinfo(struct i3c_master_controller *master, > * DEFSLVS command. > */ > if (boardinfo->base.flags & I2C_CLIENT_TEN) { > - dev_err(&master->dev, "I2C device with 10 bit address not supported."); > + dev_err(dev, "I2C device with 10 bit address not supported."); > return -ENOTSUPP; > } > >