summaryrefslogtreecommitdiffstats
path: root/drivers/i2c/muxes/pca954x.c
diff options
context:
space:
mode:
authorDavid Daney2012-04-12 23:14:22 +0200
committerWolfram Sang2012-05-12 14:28:15 +0200
commit5a3ecd5f9877b963a581ca5d4495a1a24dafc88c (patch)
tree9a027ed9fa53e859f79b007f5e661324cf9bfd60 /drivers/i2c/muxes/pca954x.c
parentof/i2c: call i2c_verify_client from of_find_i2c_device_by_node (diff)
downloadkernel-qcow2-linux-5a3ecd5f9877b963a581ca5d4495a1a24dafc88c.tar.gz
kernel-qcow2-linux-5a3ecd5f9877b963a581ca5d4495a1a24dafc88c.tar.xz
kernel-qcow2-linux-5a3ecd5f9877b963a581ca5d4495a1a24dafc88c.zip
i2c: Add a struct device * parameter to i2c_add_mux_adapter()
And adjust all callers. The new device parameter is used in the next patch to initialize the mux's of_node so that its children may be automatically populated. Signed-off-by: David Daney <david.daney@cavium.com> Tested-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Diffstat (limited to 'drivers/i2c/muxes/pca954x.c')
-rw-r--r--drivers/i2c/muxes/pca954x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/muxes/pca954x.c b/drivers/i2c/muxes/pca954x.c
index 0e37ef27aa12..f2dfe0d8fcce 100644
--- a/drivers/i2c/muxes/pca954x.c
+++ b/drivers/i2c/muxes/pca954x.c
@@ -226,7 +226,7 @@ static int pca954x_probe(struct i2c_client *client,
}
data->virt_adaps[num] =
- i2c_add_mux_adapter(adap, client,
+ i2c_add_mux_adapter(adap, &client->dev, client,
force, num, pca954x_select_chan,
(pdata && pdata->modes[num].deselect_on_exit)
? pca954x_deselect_mux : NULL);