projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d912e1d
)
[PARISC] unbreak pgalloc.h
author
Kyle McMartin
<kyle@shortfin.cabal.ca>
Mon, 18 Feb 2008 22:16:26 +0000
(14:16 -0800)
committer
Kyle McMartin
<kyle@shortfin.cabal.ca>
Sun, 16 Mar 2008 02:11:52 +0000
(19:11 -0700)
Commit
2f569afd9ced9ebec9a6eb3dbf6f83429be0a7b4
broke the compile
rather spectacularly. Fix code errors.
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
include/asm-parisc/pgalloc.h
patch
|
blob
|
blame
|
history
diff --git
a/include/asm-parisc/pgalloc.h
b/include/asm-parisc/pgalloc.h
index 3996dfc30a3f3366aebd714d63b35fb8455fcbac..fc987a1c12a88828d66c9c322da3d0a514fd5143 100644
(file)
--- a/
include/asm-parisc/pgalloc.h
+++ b/
include/asm-parisc/pgalloc.h
@@
-138,10
+138,10
@@
static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
free_page((unsigned long)pte);
}
-static inline void pte_free
_kernel
(struct mm_struct *mm, struct page *pte)
+static inline void pte_free(struct mm_struct *mm, struct page *pte)
{
pgtable_page_dtor(pte);
- pte_free_kernel(
page_address(
(pte));
+ pte_free_kernel(
mm, page_address
(pte));
}
#define check_pgt_cache() do { } while (0)