From 1e83d48b5e84e4c71a073e35ea4e2e6d0a1bdaac Mon Sep 17 00:00:00 2001 From: Krzysztof Kozlowski Date: Fri, 6 Jun 2014 14:35:52 -0700 Subject: drivers/rtc/rtc-88pm860x.c: add missing of_node_put() Add missing of_node_put() to decrement the reference count. Signed-off-by: Krzysztof Kozlowski Acked-by: Jingoo Han Cc: Haojian Zhuang Cc: Sachin Kamat Cc: Alessandro Zummo Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- drivers/rtc/rtc-88pm860x.c | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/rtc/rtc-88pm860x.c') diff --git a/drivers/rtc/rtc-88pm860x.c b/drivers/rtc/rtc-88pm860x.c index fb9e3c63b4ac..0c6add1a38dc 100644 --- a/drivers/rtc/rtc-88pm860x.c +++ b/drivers/rtc/rtc-88pm860x.c @@ -301,6 +301,7 @@ static int pm860x_rtc_dt_init(struct platform_device *pdev, ret = of_property_read_u32(np, "marvell,88pm860x-vrtc", &info->vrtc); if (ret) info->vrtc = 0; + of_node_put(np); return 0; } #else -- cgit