[PATCH v1] drivers:base:Fix unsigned compared with less than zero

From: Wang Ming
Date: Wed Jun 14 2023 - 09:36:13 EST


The return value of the of_count_cache_leaves() is long.
However, the return value is being assigned to an unsigned
long variable 'leaves',so making 'leaves' to long.

silence the warning:
./drivers/base/cacheinfo.c:300:5-11: WARNING: Unsigned expression
compared with zero: leaves > 0

Signed-off-by: Wang Ming <machel@xxxxxxxx>
---
drivers/base/cacheinfo.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/base/cacheinfo.c b/drivers/base/cacheinfo.c
index cbae8be1f..7280d5cb3 100644
--- a/drivers/base/cacheinfo.c
+++ b/drivers/base/cacheinfo.c
@@ -289,7 +289,8 @@ int init_of_cache_level(unsigned int cpu)
struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
struct device_node *np = of_cpu_device_node_get(cpu);
struct device_node *prev = NULL;
- unsigned int levels = 0, leaves, level;
+ unsigned int levels = 0, level;
+ int leaves;

if (!of_check_cache_nodes(np)) {
of_node_put(np);
--
2.25.1


________________________________
本邮件及其附件内容可能含有机密和/或隐私信息,仅供指定个人或机构使用。若您非发件人指定收件人或其代理人,请勿使用、传播、复制或存储此邮件之任何内容或其附件。如您误收本邮件,请即以回复或电话方式通知发件人,并将原始邮件、附件及其所有复本删除。谢谢。
The contents of this message and any attachments may contain confidential and/or privileged information and are intended exclusively for the addressee(s). If you are not the intended recipient of this message or their agent, please note that any use, dissemination, copying, or storage of this message or its attachments is not allowed. If you receive this message in error, please notify the sender by reply the message or phone and delete this message, any attachments and any copies immediately.
Thank you