From b84384925f8e76cc563554a756ff6213a6f2e1a4 Mon Sep 17 00:00:00 2001 From: Paul Mundt Date: Wed, 21 Jan 2009 17:45:47 +0900 Subject: [PATCH] --- yaml --- r: 130055 b: refs/heads/master c: eb6434d9e79a72d35d68811efd68fe8bab8f5baf h: refs/heads/master i: 130053: b1776cd4b321fa7677d01195b9f43d720e5ae314 130051: d84c496453a7192881707e860885eb251c6e03f9 130047: 1c6e33aa348a09cce2b27e193bf121abfa4520af v: v3 --- [refs] | 2 +- trunk/mm/nommu.c | 20 +++++++++++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/[refs] b/[refs] index 87f3df88cdc7..035375ccba76 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: f686359e0da5ae71459ee045646a5f508f9ff6d8 +refs/heads/master: eb6434d9e79a72d35d68811efd68fe8bab8f5baf diff --git a/trunk/mm/nommu.c b/trunk/mm/nommu.c index 8cee8c8ff0f2..0c3e7d2114f6 100644 --- a/trunk/mm/nommu.c +++ b/trunk/mm/nommu.c @@ -10,7 +10,7 @@ * Copyright (c) 2000-2003 David McCullough * Copyright (c) 2000-2001 D Jeff Dionne * Copyright (c) 2002 Greg Ungerer - * Copyright (c) 2007-2008 Paul Mundt + * Copyright (c) 2007-2009 Paul Mundt */ #include @@ -394,6 +394,24 @@ void vunmap(const void *addr) } EXPORT_SYMBOL(vunmap); +void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot) +{ + BUG(); + return NULL; +} +EXPORT_SYMBOL(vm_map_ram); + +void vm_unmap_ram(const void *mem, unsigned int count) +{ + BUG(); +} +EXPORT_SYMBOL(vm_unmap_ram); + +void vm_unmap_aliases(void) +{ +} +EXPORT_SYMBOL_GPL(vm_unmap_aliases); + /* * Implement a stub for vmalloc_sync_all() if the architecture chose not to * have one.