Re: [PATCH v2 03/46] i2c: mxc: Fix dev_err being called on a nonexistant variable

2020-09-17 Thread Heiko Schocher
Hello Sean, Am 15.09.2020 um 16:44 schrieb Sean Anderson: The udevice we are working with is called `bus` and not `dev`. Signed-off-by: Sean Anderson --- Changes in v2: - New drivers/i2c/mxc_i2c.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) Reviewed-by: Heiko Schocher

Re: [PATCH v2 03/46] i2c: mxc: Fix dev_err being called on a nonexistant variable

2020-09-16 Thread Simon Glass
On Tue, 15 Sep 2020 at 08:45, Sean Anderson wrote: > > The udevice we are working with is called `bus` and not `dev`. > > Signed-off-by: Sean Anderson > --- > > Changes in v2: > - New > > drivers/i2c/mxc_i2c.c | 7 +-- > 1 file changed, 5 insertions(+), 2 deletions(-) Reviewed-by: Simon Gla

[PATCH v2 03/46] i2c: mxc: Fix dev_err being called on a nonexistant variable

2020-09-15 Thread Sean Anderson
The udevice we are working with is called `bus` and not `dev`. Signed-off-by: Sean Anderson --- Changes in v2: - New drivers/i2c/mxc_i2c.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index e3d980a9df..7609594bd0 10064