linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] h8300: change 'long int' with 'long'
@ 2021-07-26 12:14 Jason Wang
  0 siblings, 0 replies; only message in thread
From: Jason Wang @ 2021-07-26 12:14 UTC (permalink / raw)
  To: ysato; +Cc: uclinux-h8-devel, linux-kernel, Jason Wang

Prefer 'long' over 'long int' as the int is unnecessary.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
---
 arch/h8300/include/asm/user.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/h8300/include/asm/user.h b/arch/h8300/include/asm/user.h
index 2298909f24c6..eb8b88c01c09 100644
--- a/arch/h8300/include/asm/user.h
+++ b/arch/h8300/include/asm/user.h
@@ -52,15 +52,15 @@ struct user {
 	struct user_regs_struct regs;	/* Where the registers are actually stored */
 /* ptrace does not yet supply these.  Someday.... */
 /* The rest of this junk is to help gdb figure out what goes where */
-	unsigned long int u_tsize;	/* Text segment size (pages). */
-	unsigned long int u_dsize;	/* Data segment size (pages). */
-	unsigned long int u_ssize;	/* Stack segment size (pages). */
+	unsigned long u_tsize;	/* Text segment size (pages). */
+	unsigned long u_dsize;	/* Data segment size (pages). */
+	unsigned long u_ssize;	/* Stack segment size (pages). */
 	unsigned long start_code;     /* Starting virtual address of text. */
 	unsigned long start_stack;	/* Starting virtual address of stack area.
 					   This is actually the bottom of the stack,
 					   the top of the stack is always found in the
 					   esp register.  */
-	long int signal;		/* Signal that caused the core dump. */
+	long signal;		/* Signal that caused the core dump. */
 	int reserved;			/* No longer used */
 	unsigned long u_ar0;		/* Used by gdb to help find the values for */
 	/* the registers. */
-- 
2.32.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-07-26 12:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-26 12:14 [PATCH] h8300: change 'long int' with 'long' Jason Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).