aboutsummaryrefslogtreecommitdiff
path: root/arch/sparc/include/asm/compat_signal.h
diff options
context:
space:
mode:
authorJoe Perches <[email protected]>2016-03-10 15:21:43 -0800
committerDavid S. Miller <[email protected]>2016-03-20 21:28:58 -0700
commit9ef595d83aea6b4d93c9a120df3c5db2e226929f (patch)
tree921a0a84517dafc1161b0dc886379e0e880d7273 /arch/sparc/include/asm/compat_signal.h
parent08f80073039aba911fbf3f316a00a4ac5d03052f (diff)
sparc: Convert naked unsigned uses to unsigned int
Use the more normal kernel definition/declaration style. Done via: $ git ls-files arch/sparc | \ xargs ./scripts/checkpatch.pl -f --fix-inplace --types=unspecified_int Signed-off-by: Joe Perches <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'arch/sparc/include/asm/compat_signal.h')
-rw-r--r--arch/sparc/include/asm/compat_signal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/sparc/include/asm/compat_signal.h b/arch/sparc/include/asm/compat_signal.h
index 9ed1f128b4d1..4b027b1044fa 100644
--- a/arch/sparc/include/asm/compat_signal.h
+++ b/arch/sparc/include/asm/compat_signal.h
@@ -6,17 +6,17 @@
#ifdef CONFIG_COMPAT
struct __new_sigaction32 {
- unsigned sa_handler;
+ unsigned int sa_handler;
unsigned int sa_flags;
- unsigned sa_restorer; /* not used by Linux/SPARC yet */
+ unsigned int sa_restorer; /* not used by Linux/SPARC yet */
compat_sigset_t sa_mask;
};
struct __old_sigaction32 {
- unsigned sa_handler;
+ unsigned int sa_handler;
compat_old_sigset_t sa_mask;
unsigned int sa_flags;
- unsigned sa_restorer; /* not used by Linux/SPARC yet */
+ unsigned int sa_restorer; /* not used by Linux/SPARC yet */
};
#endif