ti-ocf-crypto-module: add crypto module for hw accel
[openembedded.git] / recipes / linux / linux-omap1-2.6.25-omap1 / gcc43-arm-fix-inline-asm-constraints-for-preload.patch
blob4695917a57cdae7e2834415663ea4efd3be69dd0
1 Source:
2 http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=5196/1
4 Description:
5 This patch is already submitted upstream. So it will not be needed in 2.6.27 onwards I guess but anyone interested in compiling prior versions of kernels with gcc 4.3 for ARM would need this patch.
7 diff --git a/include/asm-arm/processor.h b/include/asm-arm/processor.h
8 index b01d5e7..517a4d6 100644
9 --- a/include/asm-arm/processor.h
10 +++ b/include/asm-arm/processor.h
11 @@ -112,9 +112,9 @@ extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
12 static inline void prefetch(const void *ptr)
14 __asm__ __volatile__(
15 - "pld\t%0"
16 + "pld\t%a0"
18 - : "o" (*(char *)ptr)
19 + : "p" (ptr)
20 : "cc");