diff options
author | Qi Hou <qi.hou@windriver.com> | 2017-03-03 02:57:11 -0500 |
---|---|---|
committer | Peter Rosin <peda@axentia.se> | 2017-03-03 04:50:28 -0500 |
commit | 2e1e4949f9dfb053122785cd73540bb1e61f768b (patch) | |
tree | 2e6d819dec257db0c19af0e95b25fc1d72bc449d | |
parent | c470abd4fde40ea6a0846a2beab642a578c0b8cd (diff) |
i2c: add missing of_node_put in i2c_mux_del_adapters
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().
Cc: stable@vger.kernel.org
Signed-off-by: Qi Hou <qi.hou@windriver.com>
Reviewed-by: Zhang Xiao <xiao.zhang@windriver.com>
Signed-off-by: Peter Rosin <peda@axentia.se>
-rw-r--r-- | drivers/i2c/i2c-mux.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/i2c/i2c-mux.c b/drivers/i2c/i2c-mux.c index 83768e85a919..2178266bca79 100644 --- 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) | |||
429 | while (muxc->num_adapters) { | 429 | while (muxc->num_adapters) { |
430 | struct i2c_adapter *adap = muxc->adapter[--muxc->num_adapters]; | 430 | struct i2c_adapter *adap = muxc->adapter[--muxc->num_adapters]; |
431 | struct i2c_mux_priv *priv = adap->algo_data; | 431 | struct i2c_mux_priv *priv = adap->algo_data; |
432 | struct device_node *np = adap->dev.of_node; | ||
432 | 433 | ||
433 | muxc->adapter[muxc->num_adapters] = NULL; | 434 | muxc->adapter[muxc->num_adapters] = NULL; |
434 | 435 | ||
@@ -438,6 +439,7 @@ void i2c_mux_del_adapters(struct i2c_mux_core *muxc) | |||
438 | 439 | ||
439 | sysfs_remove_link(&priv->adap.dev.kobj, "mux_device"); | 440 | sysfs_remove_link(&priv->adap.dev.kobj, "mux_device"); |
440 | i2c_del_adapter(adap); | 441 | i2c_del_adapter(adap); |
442 | of_node_put(np); | ||
441 | kfree(priv); | 443 | kfree(priv); |
442 | } | 444 | } |
443 | } | 445 | } |