summaryrefslogtreecommitdiff
path: root/arch/m68k/include/asm/page.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-01-12 18:33:51 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2016-01-12 18:33:51 (GMT)
commit2945e9f111e2f5f7d7b0f4af0a56b9f768db9fc8 (patch)
tree97383c07c5ba1bf78ad50be4574e7f2fb26f9c15 /arch/m68k/include/asm/page.h
parentc5c80bd923d34f7dc70e7b23eb427cd284989a1b (diff)
parenteb37bc3f85b69f529d2ad06c41fad8dedd654c76 (diff)
downloadlinux-2945e9f111e2f5f7d7b0f4af0a56b9f768db9fc8.tar.xz
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k
Pull m68k updates from Geert Uytterhoeven. * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k: m68k: Provide __phys_to_pfn() and __pfn_to_phys() m68k/atari, m68k/sun3: Fix SCSI platform device registration when driver is modular m68k/defconfig: Update defconfigs for v4.4-rc1 m68k/mac: Kill psc_present
Diffstat (limited to 'arch/m68k/include/asm/page.h')
-rw-r--r--arch/m68k/include/asm/page.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/page.h b/arch/m68k/include/asm/page.h
index 38b024a..430d4d5 100644
--- a/arch/m68k/include/asm/page.h
+++ b/arch/m68k/include/asm/page.h
@@ -48,6 +48,9 @@ extern unsigned long _ramend;
#include <asm/page_no.h>
#endif
+#define __phys_to_pfn(paddr) ((unsigned long)((paddr) >> PAGE_SHIFT))
+#define __pfn_to_phys(pfn) PFN_PHYS(pfn)
+
#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)