Java程序辅导

C C++ Java Python Processing编程在线培训 程序编写 软件开发 视频讲解

客服在线QQ:2653320439 微信:ittutor Email:itutor@qq.com
wx: cjtutor
QQ: 2653320439
Linux-Kernel Archive: [PATCH] arch: mips: pic32: pic32mzda: Add missing of_node_put() in time.c [PATCH] arch: mips: pic32: pic32mzda: Add missing of_node_put() in time.c From: Liang He Date: Wed Jun 15 2022 - 08:44:20 EST Next message: Dmitry Baryshkov: "Re: [PATCH v3 2/2] drm/msm: Expose client engine utilization via fdinfo" Previous message: Andy Shevchenko: "Re: [PATCH 1/2] iio: adc: stx104: Implement and utilize register structures" Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] In pic32_xlate_core_timer_irq(), of_find_matching_node() will return a node pointer with refcount incremented. We should use of_node_put() when it is not used anymore. Signed-off-by: Liang He --- arch/mips/pic32/pic32mzda/time.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/mips/pic32/pic32mzda/time.c b/arch/mips/pic32/pic32mzda/time.c index 7174e9abbb1b..c5b5343ca03c 100644 --- a/arch/mips/pic32/pic32mzda/time.c +++ b/arch/mips/pic32/pic32mzda/time.c @@ -32,6 +32,9 @@ static unsigned int pic32_xlate_core_timer_irq(void) goto default_map; irq = irq_of_parse_and_map(node, 0); + + of_node_put(node); + if (!irq) goto default_map; -- 2.25.1 Next message: Dmitry Baryshkov: "Re: [PATCH v3 2/2] drm/msm: Expose client engine utilization via fdinfo" Previous message: Andy Shevchenko: "Re: [PATCH 1/2] iio: adc: stx104: Implement and utilize register structures" Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]