summaryrefslogtreecommitdiffstats
path: root/include/asm-m68k
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-m68k')
-rw-r--r--include/asm-m68k/page.h3
-rw-r--r--include/asm-m68k/pci.h5
2 files changed, 8 insertions, 0 deletions
diff --git a/include/asm-m68k/page.h b/include/asm-m68k/page.h
index 117abf25d..7cf002fb7 100644
--- a/include/asm-m68k/page.h
+++ b/include/asm-m68k/page.h
@@ -76,6 +76,9 @@ static inline void clear_page(void *page)
#define copy_page(to,from) memcpy((to), (from), PAGE_SIZE)
#endif
+#define clear_user_page(page, vaddr) clear_page(page)
+#define copy_user_page(to, from, vaddr) copy_page(to, from)
+
/*
* These are used to make use of C type-checking..
*/
diff --git a/include/asm-m68k/pci.h b/include/asm-m68k/pci.h
index 76915264d..efbaf41b5 100644
--- a/include/asm-m68k/pci.h
+++ b/include/asm-m68k/pci.h
@@ -35,4 +35,9 @@ struct pci_bus_info
#define pcibios_assign_all_busses() 0
+extern inline void pcibios_set_master(struct pci_dev *dev)
+{
+ /* No special bus mastering setup handling */
+}
+
#endif /* _ASM_M68K_PCI_H */