mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 19:06:16 +02:00
343c185b7d
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16547 3c298f89-4303-0410-b956-a3cf2f4a3e73
22 lines
552 B
Diff
22 lines
552 B
Diff
--- a/include/asm-m68k/cf_pgtable.h
|
|
+++ b/include/asm-m68k/cf_pgtable.h
|
|
@@ -176,7 +176,7 @@ extern inline pte_t pte_modify(pte_t pte
|
|
|
|
#define pmd_set(pmdp, ptep) do {} while (0)
|
|
|
|
-extern inline void pgd_set(pgd_t *pgdp, pmd_t *pmdp)
|
|
+static inline void pgd_set(pgd_t *pgdp, pmd_t *pmdp)
|
|
{
|
|
pgd_val(*pgdp) = virt_to_phys(pmdp);
|
|
}
|
|
--- a/arch/m68k/mm/cf-mmu.c
|
|
+++ b/arch/m68k/mm/cf-mmu.c
|
|
@@ -21,6 +21,7 @@
|
|
#include <linux/blkdev.h>
|
|
#endif
|
|
#include <linux/bootmem.h>
|
|
+#include <linux/highmem.h>
|
|
|
|
#include <asm/setup.h>
|
|
#include <asm/uaccess.h>
|