projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17b57b1
)
i2c: mux: pca954x: simplify code to reach the adapter
author
Luca Ceresoli
<
[email protected]
>
Wed, 3 Oct 2018 15:50:22 +0000
(17:50 +0200)
committer
Peter Rosin
<
[email protected]
>
Mon, 8 Oct 2018 21:44:27 +0000
(23:44 +0200)
struct i2c_client has a direct pointer to the adapter, no need to dig
it out of the struct device tree.
Signed-off-by: Luca Ceresoli <
[email protected]
>
Acked-by: Wolfram Sang <
[email protected]
>
Signed-off-by: Peter Rosin <
[email protected]
>
drivers/i2c/muxes/i2c-mux-pca954x.c
patch
|
blob
|
history
diff --git
a/drivers/i2c/muxes/i2c-mux-pca954x.c
b/drivers/i2c/muxes/i2c-mux-pca954x.c
index 24bd9275fde5fc8775407c56b80825aa1d4c1aaf..bfabf985e8308c809156bce0e11cc84f0ca8f901 100644
(file)
--- a/
drivers/i2c/muxes/i2c-mux-pca954x.c
+++ b/
drivers/i2c/muxes/i2c-mux-pca954x.c
@@
-347,7
+347,7
@@
static void pca954x_cleanup(struct i2c_mux_core *muxc)
static int pca954x_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 pca954x_platform_data *pdata = dev_get_platdata(&client->dev);
struct device *dev = &client->dev;
struct device_node *np = dev->of_node;