summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Hopf <mat@mshopf.de>2006-05-22 16:35:15 +0000
committerMatthias Hopf <mat@mshopf.de>2006-05-22 16:35:15 +0000
commit1c6de64b5d67906e1e45174e8104e6a0c818138f (patch)
tree1d1a7bb63b99e81fe77b8d9db3693859adc64c9a
parente7408c02b9169f7805364769953e26959bede94d (diff)
downloadxine-lib-1c6de64b5d67906e1e45174e8104e6a0c818138f.tar.gz
xine-lib-1c6de64b5d67906e1e45174e8104e6a0c818138f.tar.bz2
Don't hardcode cache line size for PPC. (Andreas Schwab)
CVS patchset: 7991 CVS date: 2006/05/22 16:35:15
-rw-r--r--src/xine-utils/cpu_accel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-utils/cpu_accel.c b/src/xine-utils/cpu_accel.c
index e32a0693c..b32733fba 100644
--- a/src/xine-utils/cpu_accel.c
+++ b/src/xine-utils/cpu_accel.c
@@ -189,7 +189,7 @@ static void sigill_handler (int sig)
static uint32_t arch_accel (void)
{
/* FIXME: Autodetect cache line size via AUX ELF vector or otherwise */
- uint32_t flags = MM_ACCEL_PPC_CACHE32;
+ uint32_t flags = 0;
signal (SIGILL, sigill_handler);
if (sigsetjmp (jmpbuf, 1)) {