summaryrefslogtreecommitdiffstats
path: root/vidix
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-16 09:21:21 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-16 09:21:21 +0000
commit93d598c7b2d6f71fa6381829dc6ec3610ed322e8 (patch)
treecfb70dc87a86bbb17b02e26e9ff614fe53345463 /vidix
parent452cda5332e48c77ae5a5594eff3f57d54ded30c (diff)
downloadmpv-93d598c7b2d6f71fa6381829dc6ec3610ed322e8.tar.bz2
mpv-93d598c7b2d6f71fa6381829dc6ec3610ed322e8.tar.xz
Lots and lots of #ifdef ARCH_... -> #if ARCH_...
and #ifdef HAVE_MMX etc -> #if HAVE_MMX. There might be still more that need to be fixed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28325 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix')
-rw-r--r--vidix/dha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vidix/dha.c b/vidix/dha.c
index 638be29328..8a2d8fd1cd 100644
--- a/vidix/dha.c
+++ b/vidix/dha.c
@@ -43,7 +43,7 @@
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
-#ifdef ARCH_ALPHA
+#if ARCH_ALPHA
#include <sys/io.h>
#endif
#include <unistd.h>
@@ -91,7 +91,7 @@ static int mem_fd = -1;
void *map_phys_mem(unsigned long base, unsigned long size)
{
-#ifdef ARCH_ALPHA
+#if ARCH_ALPHA
/* TODO: move it into sysdep */
base += bus_base();
#endif