Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 130055
b: refs/heads/master
c: eb6434d
h: refs/heads/master
i:
  130053: b1776cd
  130051: d84c496
  130047: 1c6e33a
v: v3
  • Loading branch information
Paul Mundt committed Jan 21, 2009
1 parent bf9739b commit b843849
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f686359e0da5ae71459ee045646a5f508f9ff6d8
refs/heads/master: eb6434d9e79a72d35d68811efd68fe8bab8f5baf
20 changes: 19 additions & 1 deletion trunk/mm/nommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Copyright (c) 2000-2003 David McCullough <davidm@snapgear.com>
* Copyright (c) 2000-2001 D Jeff Dionne <jeff@uClinux.org>
* Copyright (c) 2002 Greg Ungerer <gerg@snapgear.com>
* Copyright (c) 2007-2008 Paul Mundt <lethal@linux-sh.org>
* Copyright (c) 2007-2009 Paul Mundt <lethal@linux-sh.org>
*/

#include <linux/module.h>
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit b843849

Please sign in to comment.