diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-01-06 06:45:14 +0100 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-01-06 06:45:14 +0100 |
commit | 56d45b62ce622a003da972428fdbba2b42102efb (patch) | |
tree | df4b010e0a24a87ed434375ff1419c768fda66ae /arch/sh/mm/nommu.c | |
parent | sh: Drop down to a single quicklist. (diff) | |
download | linux-56d45b62ce622a003da972428fdbba2b42102efb.tar.xz linux-56d45b62ce622a003da972428fdbba2b42102efb.zip |
sh: Fix up nommu build for out-of-line pgtable changes.
pgtable_cache_init() has been moved out-of-line, so we also need a dummy
definition for it on nommu to fix up the build.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm/nommu.c')
-rw-r--r-- | arch/sh/mm/nommu.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sh/mm/nommu.c b/arch/sh/mm/nommu.c index ac16c05917ef..7694f50c9034 100644 --- a/arch/sh/mm/nommu.c +++ b/arch/sh/mm/nommu.c @@ -94,3 +94,7 @@ void __init page_table_range_init(unsigned long start, unsigned long end, void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot) { } + +void pgtable_cache_init(void) +{ +} |