aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2017-03-09 16:32:17 +0100
committerWolfram Sang <wsa@the-dreams.de>2017-03-09 16:33:50 +0100
commit8ce0928e6867fda4d208d7bddf251bce96ab8431 (patch)
tree42d32f19fdff43702b520bec83210d25040862b8 /drivers/i2c
parenti2c: exynos5: Avoid transaction timeouts due TRANSFER_DONE_AUTO not set (diff)
downloadlinux-dev-8ce0928e6867fda4d208d7bddf251bce96ab8431.tar.xz
linux-dev-8ce0928e6867fda4d208d7bddf251bce96ab8431.zip
Revert "i2c: add missing of_node_put in i2c_mux_del_adapters"
This reverts commit 02dbfa5e5583523035f05636c614a0eca77f1aab. I grabbed the wrong version from the list and will pull the proper one from Peter Rosin's mux tree. Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/i2c-mux.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/i2c/i2c-mux.c b/drivers/i2c/i2c-mux.c
index 2178266bca79..83768e85a919 100644
--- a/drivers/i2c/i2c-mux.c
+++ b/drivers/i2c/i2c-mux.c
@@ -429,7 +429,6 @@ 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;
@@ -439,7 +438,6 @@ 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);
}
}