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>
This commit is contained in:
Paul Mundt
2008-12-10 18:17:19 +09:00
parent a99d6fde69
commit 35724a0aed
2 changed files with 3 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ static int asids_seq_show(struct seq_file *file, void *iter)
continue;
if (p->mm)
seq_printf(file, "%5d : %02x\n", pid,
seq_printf(file, "%5d : %02lx\n", pid,
cpu_asid(smp_processor_id(), p->mm));
else
seq_printf(file, "%5d : (none)\n", pid);