diff options
author | David Daney <david.daney@cavium.com> | 2012-04-12 17:14:22 -0400 |
---|---|---|
committer | Wolfram Sang <w.sang@pengutronix.de> | 2012-05-12 08:28:15 -0400 |
commit | 5a3ecd5f9877b963a581ca5d4495a1a24dafc88c (patch) | |
tree | 9a027ed9fa53e859f79b007f5e661324cf9bfd60 /drivers/i2c/muxes/pca954x.c | |
parent | d9afca37dea077d11ed67fc7f93b95c003e58819 (diff) |
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.c | 2 |
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, | |||
226 | } | 226 | } |
227 | 227 | ||
228 | data->virt_adaps[num] = | 228 | data->virt_adaps[num] = |
229 | i2c_add_mux_adapter(adap, client, | 229 | i2c_add_mux_adapter(adap, &client->dev, client, |
230 | force, num, pca954x_select_chan, | 230 | force, num, pca954x_select_chan, |
231 | (pdata && pdata->modes[num].deselect_on_exit) | 231 | (pdata && pdata->modes[num].deselect_on_exit) |
232 | ? pca954x_deselect_mux : NULL); | 232 | ? pca954x_deselect_mux : NULL); |