diff options
author | 2018-11-20 08:30:40 -0500 | |
---|---|---|
committer | 2018-12-02 20:55:22 -0800 | |
commit | 87d81a23e24f24ebe014891e8bdf3ff8785031e8 (patch) | |
tree | 3c619c03a21a2ee17eff8fd429ebc62ed2cffa29 /drivers/sbus | |
parent | sparc32: supress another implicit-fallthrough warning (diff) | |
download | wireguard-linux-87d81a23e24f24ebe014891e8bdf3ff8785031e8.tar.xz wireguard-linux-87d81a23e24f24ebe014891e8bdf3ff8785031e8.zip |
sbus: char: add of_node_put()
use of_node_put() to release the refcount.
Signed-off-by: Yangtao Li <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'drivers/sbus')
-rw-r--r-- | drivers/sbus/char/display7seg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/sbus/char/display7seg.c b/drivers/sbus/char/display7seg.c index 5c8ed7350a04..a36e4cf1841d 100644 --- a/drivers/sbus/char/display7seg.c +++ b/drivers/sbus/char/display7seg.c @@ -220,6 +220,7 @@ static int d7s_probe(struct platform_device *op) dev_set_drvdata(&op->dev, p); d7s_device = p; err = 0; + of_node_put(opts); out: return err; |