summaryrefslogtreecommitdiff
path: root/hw/xfree86/os-support/misc/BUSmemcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/xfree86/os-support/misc/BUSmemcpy.c')
-rw-r--r--hw/xfree86/os-support/misc/BUSmemcpy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/os-support/misc/BUSmemcpy.c b/hw/xfree86/os-support/misc/BUSmemcpy.c
index 0500bf6c1..e6ffde97e 100644
--- a/hw/xfree86/os-support/misc/BUSmemcpy.c
+++ b/hw/xfree86/os-support/misc/BUSmemcpy.c
@@ -31,12 +31,12 @@ Thanks to Linus Torvalds for contributing this code.
static unsigned long __memcpy(unsigned long dest, unsigned long src, int n);
-_X_EXPORT void
+void
xf86BusToMem(unsigned char *dst, unsigned char *src, int len)
{
__memcpy((unsigned long)dst, (unsigned long)src, len);
}
-_X_EXPORT void
+void
xf86MemToBus(unsigned char *dst, unsigned char *src, int len)
{
if (len == sizeof(int))