From bd6890975303f4c19bd55669ca69d4ddc61cf6b2 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 22 Sep 2014 17:42:10 +0200 Subject: postprocess: prefetch* dont change anything, thus their arguments should be const Signed-off-by: Michael Niedermayer --- libpostproc/postprocess.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libpostproc/postprocess.c') diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index dae5e275ae..e06c29b084 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -166,28 +166,28 @@ static const char * const replaceTable[]= #if ARCH_X86 && HAVE_INLINE_ASM -static inline void prefetchnta(void *p) +static inline void prefetchnta(const void *p) { __asm__ volatile( "prefetchnta (%0)\n\t" : : "r" (p) ); } -static inline void prefetcht0(void *p) +static inline void prefetcht0(const void *p) { __asm__ volatile( "prefetcht0 (%0)\n\t" : : "r" (p) ); } -static inline void prefetcht1(void *p) +static inline void prefetcht1(const void *p) { __asm__ volatile( "prefetcht1 (%0)\n\t" : : "r" (p) ); } -static inline void prefetcht2(void *p) +static inline void prefetcht2(const void *p) { __asm__ volatile( "prefetcht2 (%0)\n\t" : : "r" (p) -- cgit v1.2.3