summaryrefslogtreecommitdiff
path: root/arch/sparc/kernel/setup_64.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2016-03-11 02:21:43 +0300
committerDavid S. Miller <davem@davemloft.net>2016-03-21 07:28:58 +0300
commit9ef595d83aea6b4d93c9a120df3c5db2e226929f (patch)
tree921a0a84517dafc1161b0dc886379e0e880d7273 /arch/sparc/kernel/setup_64.c
parent08f80073039aba911fbf3f316a00a4ac5d03052f (diff)
downloadlinux-9ef595d83aea6b4d93c9a120df3c5db2e226929f.tar.xz
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 <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel/setup_64.c')
-rw-r--r--arch/sparc/kernel/setup_64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/setup_64.c b/arch/sparc/kernel/setup_64.c
index f3185e2b028b..26db95b54ee9 100644
--- a/arch/sparc/kernel/setup_64.c
+++ b/arch/sparc/kernel/setup_64.c
@@ -77,7 +77,7 @@ struct screen_info screen_info = {
};
static void
-prom_console_write(struct console *con, const char *s, unsigned n)
+prom_console_write(struct console *con, const char *s, unsigned int n)
{
prom_write(s, n);
}