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:
2501c1b
)
i2c: add missing of_node_put in i2c_mux_del_adapters
author
Qi Hou
<
[email protected]
>
Fri, 3 Mar 2017 07:57:11 +0000
(15:57 +0800)
committer
Wolfram Sang
<
[email protected]
>
Wed, 8 Mar 2017 16:59:12 +0000
(17:59 +0100)
Refcount of of_node is increased with of_node_get() in i2c_mux_add_adapter().
It must be decreased with of_node_put() in i2c_mux_del_adapters().
Signe-off-by: Qi Hou <
[email protected]
>
Reviewed-by: Zhang Xiao <
[email protected]
>
Acked-by: Peter Rosin <
[email protected]
>
Signed-off-by: Wolfram Sang <
[email protected]
>
drivers/i2c/i2c-mux.c
patch
|
blob
|
history
diff --git
a/drivers/i2c/i2c-mux.c
b/drivers/i2c/i2c-mux.c
index 83768e85a919cb5c6eb60af01ce5918027600962..2178266bca794825e948ce275d48a1b13064056c 100644
(file)
--- a/
drivers/i2c/i2c-mux.c
+++ b/
drivers/i2c/i2c-mux.c
@@
-429,6
+429,7
@@
void i2c_mux_del_adapters(struct i2c_mux_core *muxc)
while (muxc->num_adapters) {
struct i2c_adapter *adap = muxc->adapter[--muxc->num_adapters];
struct i2c_mux_priv *priv = adap->algo_data;
+ struct device_node *np = adap->dev.of_node;
muxc->adapter[muxc->num_adapters] = NULL;
@@
-438,6
+439,7
@@
void i2c_mux_del_adapters(struct i2c_mux_core *muxc)
sysfs_remove_link(&priv->adap.dev.kobj, "mux_device");
i2c_del_adapter(adap);
+ of_node_put(np);
kfree(priv);
}
}