From 82df1b9d24824f8f65882b77143522767fc83fe6 Mon Sep 17 00:00:00 2001 From: nick Date: Fri, 19 Apr 2002 16:34:04 +0000 Subject: sync with mplayerxp git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5703 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libdha/libdha.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'libdha/libdha.c') diff --git a/libdha/libdha.c b/libdha/libdha.c index 7b332d96c0..800b68bcf2 100644 --- a/libdha/libdha.c +++ b/libdha/libdha.c @@ -27,6 +27,9 @@ #include #include #include +#ifdef ARCH_ALPHA +#include +#endif #include /* instead exit() use libdha_exit, and do the 'mother-application' deinit @@ -67,8 +70,12 @@ void libdha_exit(const char *message, int level) #include "kernelhelper/dhahelper.h" static int mem=-1; -void *map_phys_mem(unsigned base, unsigned size) +void *map_phys_mem(unsigned long base, unsigned long size) { +#ifdef ARCH_ALPHA +/* TODO: move it into sysdep */ + base += bus_base(); +#endif if ( (mem = open("/dev/dhahelper",O_RDWR)) < 0) { if ( (mem = open(DEV_MEM,O_RDWR)) == -1) { @@ -95,8 +102,12 @@ void *map_phys_mem(unsigned base, unsigned size) #else static int mem=-1; -void *map_phys_mem(unsigned base, unsigned size) +void *map_phys_mem(unsigned long base, unsigned long size) { +#ifdef ARCH_ALPHA +/* TODO: move it into sysdep */ + base += bus_base(); +#endif if ( (mem = open(DEV_MEM,O_RDWR)) == -1) { perror("libdha: open(/dev/mem) failed") ; exit(1) ; } @@ -104,7 +115,7 @@ void *map_phys_mem(unsigned base, unsigned size) } #endif /* CONFIG_DHAHELPER */ -void unmap_phys_mem(void *ptr, unsigned size) +void unmap_phys_mem(void *ptr, unsigned long size) { int res=munmap(ptr,size) ; if (res == -1) { perror("libdha: munmap() failed") ; exit(1) ; } -- cgit v1.2.3