[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20211103072252.24556-1-liujingjing@cdjrlc.com>
Date: Wed, 3 Nov 2021 15:22:52 +0800
From: Jingjing Liu <liujingjing@...rlc.com>
To: gerg@...ux-m68k.org
Cc: geert@...ux-m68k.org, linux-m68k@...ts.linux-m68k.org,
linux-kernel@...r.kernel.org, Jingjing Liu <liujingjing@...rlc.com>
Subject: [PATCH] m68k: coldfire: Prefer unsigned int to bare use of unsigned
Fix checkpatch warnings:
WARNING: Prefer 'unsigned int' to bare use of 'unsigned'
Signed-off-by: Jingjing Liu <liujingjing@...rlc.com>
---
arch/m68k/coldfire/m520x.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/m68k/coldfire/m520x.c b/arch/m68k/coldfire/m520x.c
index d2f96b40aee1..dca89214bbc6 100644
--- a/arch/m68k/coldfire/m520x.c
+++ b/arch/m68k/coldfire/m520x.c
@@ -106,7 +106,7 @@ static struct clk * const disable_clks[] __initconst = {
static void __init m520x_clk_init(void)
{
- unsigned i;
+ unsigned int i;
/* make sure these clocks are enabled */
for (i = 0; i < ARRAY_SIZE(enable_clks); ++i)
--
2.33.1
Powered by blists - more mailing lists