summaryrefslogtreecommitdiffstats
path: root/arch/sh/mm/asids-debugfs.c
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2008-12-10 18:17:19 +0900
committerPaul Mundt <lethal@linux-sh.org>2008-12-22 18:44:03 +0900
commit35724a0aed6e62bdad640e8a1b8498329708226f (patch)
treec6cff78adaa62df45bd3fcbbbdc0e1d18cc28c17 /arch/sh/mm/asids-debugfs.c
parenta99d6fde69dd9c73ac0b4e42a77ed1ebc714e56a (diff)
downloadop-kernel-dev-35724a0aed6e62bdad640e8a1b8498329708226f.zip
op-kernel-dev-35724a0aed6e62bdad640e8a1b8498329708226f.tar.gz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/mm/asids-debugfs.c b/arch/sh/mm/asids-debugfs.c
index 0678a10..8e912a1 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)
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);
OpenPOWER on IntegriCloud