diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-12-10 04:17:19 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-12-22 04:44:03 -0500 |
commit | 35724a0aed6e62bdad640e8a1b8498329708226f (patch) | |
tree | c6cff78adaa62df45bd3fcbbbdc0e1d18cc28c17 /arch/sh/mm/asids-debugfs.c | |
parent | a99d6fde69dd9c73ac0b4e42a77ed1ebc714e56a (diff) |
sh: Fix up the cpu_asid() return value on nommu.
This ought to be unsigned long, rather than defaulting to int.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm/asids-debugfs.c')
-rw-r--r-- | arch/sh/mm/asids-debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/mm/asids-debugfs.c b/arch/sh/mm/asids-debugfs.c index 0678a1044a9a..8e912a15e94f 100644 --- a/arch/sh/mm/asids-debugfs.c +++ b/arch/sh/mm/asids-debugfs.c | |||
@@ -37,7 +37,7 @@ static int asids_seq_show(struct seq_file *file, void *iter) | |||
37 | continue; | 37 | continue; |
38 | 38 | ||
39 | if (p->mm) | 39 | if (p->mm) |
40 | seq_printf(file, "%5d : %02x\n", pid, | 40 | seq_printf(file, "%5d : %02lx\n", pid, |
41 | cpu_asid(smp_processor_id(), p->mm)); | 41 | cpu_asid(smp_processor_id(), p->mm)); |
42 | else | 42 | else |
43 | seq_printf(file, "%5d : (none)\n", pid); | 43 | seq_printf(file, "%5d : (none)\n", pid); |