[<prev] [next>] [day] [month] [year] [list]
Message-ID: <7b527a83b74ebb9eca3026e4b85eb9d8@208suo.com>
Date: Sun, 09 Jul 2023 20:05:21 +0800
From: xuanzhenggang001@...suo.com
To: catalin.marinas@....com, will@...nel.org
Cc: mark.rutland@....com, ryan.roberts@....com,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: [PATCH] arm64: mm: prefer 'unsigned int' to bare use of 'unsigned'
Fix the following warnings reported by checkpatch:
arch/arm64/mm/ptdump.c:207: WARNING: Prefer 'unsigned int' to bare use
of 'unsigned'
arch/arm64/mm/ptdump.c:334: WARNING: Prefer 'unsigned int' to bare use
of 'unsigned'
Signed-off-by: Zhenggang Xuan <xuanzhenggang001@...suo.com>
---
arch/arm64/mm/ptdump.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/mm/ptdump.c b/arch/arm64/mm/ptdump.c
index e305b6593c4e..0a755fddbcf2 100644
--- a/arch/arm64/mm/ptdump.c
+++ b/arch/arm64/mm/ptdump.c
@@ -204,7 +204,7 @@ static struct pg_level pg_level[] = {
static void dump_prot(struct pg_state *st, const struct prot_bits
*bits,
size_t num)
{
- unsigned i;
+ unsigned int i;
for (i = 0; i < num; i++, bits++) {
const char *s;
@@ -331,7 +331,7 @@ void ptdump_walk(struct seq_file *s, struct
ptdump_info *info)
static void __init ptdump_initialize(void)
{
- unsigned i, j;
+ unsigned int i, j;
for (i = 0; i < ARRAY_SIZE(pg_level); i++)
if (pg_level[i].bits)
Powered by blists - more mailing lists