[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <202211251544369078587@zte.com.cn>
Date: Fri, 25 Nov 2022 15:44:36 +0800 (CST)
From: <ye.xingchen@....com.cn>
To: <andersson@...nel.org>
Cc: <ohad@...ery.com>, <baolin.wang@...ux.alibaba.com>,
<linux-remoteproc@...r.kernel.org>, <linux-kernel@...r.kernel.org>
Subject: [PATCH] hwspinlock: Use device_match_of_node()
From: ye xingchen <ye.xingchen@....com.cn>
Replace the open-code with device_match_of_node().
Signed-off-by: ye xingchen <ye.xingchen@....com.cn>
---
drivers/hwspinlock/hwspinlock_core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/hwspinlock/hwspinlock_core.c b/drivers/hwspinlock/hwspinlock_core.c
index fd5f5c5a5244..22b8f2a70b3b 100644
--- a/drivers/hwspinlock/hwspinlock_core.c
+++ b/drivers/hwspinlock/hwspinlock_core.c
@@ -367,7 +367,7 @@ int of_hwspin_lock_get_id(struct device_node *np, int index)
continue;
}
- if (hwlock->bank->dev->of_node == args.np) {
+ if (device_match_of_node(hwlock->bank->dev, args.np)) {
ret = 0;
break;
}
--
2.25.1
Powered by blists - more mailing lists