From: Yangtao Li Date: Tue, 20 Nov 2018 13:30:40 +0000 (-0500) Subject: sbus: char: add of_node_put() X-Git-Tag: rel_imx_4.19.35_1.1.0~7718 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=90d62a36352a679a9bfadaf2068b2f897409054e;p=linux.git sbus: char: add of_node_put() [ Upstream commit 87d81a23e24f24ebe014891e8bdf3ff8785031e8 ] use of_node_put() to release the refcount. Signed-off-by: Yangtao Li Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- 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;