Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c3518a4e authored by Wolfram Sang's avatar Wolfram Sang
Browse files

i2c: zx2967: always use the same device when printing errors



Let's always use the platform device for dev_* and not sometimes the
adapter device as well. Also fix this checkpatch check:

CHECK: Macro argument 'i2c' may be better as '(i2c)' to avoid precedence issues

Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
Acked-by: default avatarShawn Guo <shawnguo@kernel.org>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent df40f247
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@

#define I2C_TIMEOUT			msecs_to_jiffies(1000)

#define DEV(i2c)			(&i2c->adap.dev)
#define DEV(i2c)			((i2c)->adap.dev.parent)

struct zx2967_i2c {
	struct i2c_adapter	adap;