diff options
author | Matthias Hopf <mat@mshopf.de> | 2006-05-22 16:35:15 +0000 |
---|---|---|
committer | Matthias Hopf <mat@mshopf.de> | 2006-05-22 16:35:15 +0000 |
commit | 1c6de64b5d67906e1e45174e8104e6a0c818138f (patch) | |
tree | 1d1a7bb63b99e81fe77b8d9db3693859adc64c9a | |
parent | e7408c02b9169f7805364769953e26959bede94d (diff) | |
download | xine-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.c | 2 |
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)) { |