public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] drivers:base:Fix unsigned compared with less than zero
@ 2023-06-14 13:35 Wang Ming
  2023-06-14 14:33 ` Conor Dooley
  0 siblings, 1 reply; 3+ messages in thread
From: Wang Ming @ 2023-06-14 13:35 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Rafael J. Wysocki, linux-kernel
  Cc: opensource.kernel, Wang Ming

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@vivo.com>
---
 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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-06-16  9:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-14 13:35 [PATCH v1] drivers:base:Fix unsigned compared with less than zero Wang Ming
2023-06-14 14:33 ` Conor Dooley
     [not found]   ` <SG2PR06MB374351CD57614B51FF2E71CABD5BA@SG2PR06MB3743.apcprd06.prod.outlook.com>
     [not found]     ` <20230615-cathedral-concur-969e91b8c792@wendy>
2023-06-16  9:00       ` 回复: " Sudeep Holla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox