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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user