Skip to content

Commit

Permalink
Revert "i2c: add missing of_node_put in i2c_mux_del_adapters"
Browse files Browse the repository at this point in the history
This reverts commit 02dbfa5. 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>
  • Loading branch information
Wolfram Sang committed Mar 9, 2017
1 parent 9ad2247 commit 8ce0928
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions drivers/i2c/i2c-mux.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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);
}
}
Expand Down

0 comments on commit 8ce0928

Please sign in to comment.