[PATCH] alpha/boot/misc: prefer 'unsigned int' to bare use of 'unsigned'

From: xuanzhenggang001
Date: Sun Jul 09 2023 - 10:12:16 EST


Fix the following warnings reported by checkpatch:

arch/alpha/boot/misc.c:48: WARNING: Prefer 'unsigned int' to bare use of 'unsigned'
arch/alpha/boot/misc.c:49: WARNING: Prefer 'unsigned int' to bare use of 'unsigned'
arch/alpha/boot/misc.c:50: WARNING: Prefer 'unsigned int' to bare use of 'unsigned'
arch/alpha/boot/misc.c:124: WARNING: Prefer 'unsigned int' to bare use of 'unsigned'

Signed-off-by: Zhenggang Xuan <xuanzhenggang001@xxxxxxxxxx>
---
arch/alpha/boot/misc.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/alpha/boot/misc.c b/arch/alpha/boot/misc.c
index 1ab91852d9f7..7d3249972587 100644
--- a/arch/alpha/boot/misc.c
+++ b/arch/alpha/boot/misc.c
@@ -45,9 +45,9 @@ typedef unsigned long ulg;
static uch *inbuf; /* input buffer */
static uch *window; /* Sliding window buffer */

-static unsigned insize; /* valid bytes in inbuf */
-static unsigned inptr; /* index of next byte to be processed in inbuf */
-static unsigned outcnt; /* bytes in output buffer */
+static unsigned int insize; /* valid bytes in inbuf */
+static unsigned int inptr; /* index of next byte to be processed in inbuf */
+static unsigned int outcnt; /* bytes in output buffer */

/* gzip flag byte */
#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
@@ -121,7 +121,7 @@ int fill_inbuf(void)
void flush_window(void)
{
ulg c = crc;
- unsigned n;
+ unsigned int n;
uch *in, *out, ch;

in = window;