summaryrefslogtreecommitdiffstats
path: root/drivers/i2c
diff options
context:
space:
mode:
authorLuca Ceresoli2018-10-03 17:50:24 +0200
committerPeter Rosin2018-10-08 23:44:28 +0200
commit7451dc608564f9f2077c6c895f9c94a815d401e5 (patch)
tree568e29feb2eab7f483be5b1819d04e27a6b4b13c /drivers/i2c
parenti2c: mux: ltc4306: simplify code to reach the adapter (diff)
downloadkernel-qcow2-linux-7451dc608564f9f2077c6c895f9c94a815d401e5.tar.gz
kernel-qcow2-linux-7451dc608564f9f2077c6c895f9c94a815d401e5.tar.xz
kernel-qcow2-linux-7451dc608564f9f2077c6c895f9c94a815d401e5.zip
i2c: mux: mlxcpld: simplify code to reach the adapter
struct i2c_client has a direct pointer to the adapter, no need to dig it out of the struct device tree. Suggested-by: Peter Rosin <peda@axentia.se> Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: Wolfram Sang <wsa@the-dreams.de> Signed-off-by: Peter Rosin <peda@axentia.se>
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/muxes/i2c-mux-mlxcpld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/muxes/i2c-mux-mlxcpld.c b/drivers/i2c/muxes/i2c-mux-mlxcpld.c
index f2bf3e57ed67..5ed55ca4fe93 100644
--- a/drivers/i2c/muxes/i2c-mux-mlxcpld.c
+++ b/drivers/i2c/muxes/i2c-mux-mlxcpld.c
@@ -132,7 +132,7 @@ static int mlxcpld_mux_deselect(struct i2c_mux_core *muxc, u32 chan)
static int mlxcpld_mux_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
- struct i2c_adapter *adap = to_i2c_adapter(client->dev.parent);
+ struct i2c_adapter *adap = client->adapter;
struct mlxcpld_mux_plat_data *pdata = dev_get_platdata(&client->dev);
struct i2c_mux_core *muxc;
int num, force;