diff options
author | Eugene Konev <ejka@imfi.kspu.ru> | 2007-10-04 02:26:27 +0000 |
---|---|---|
committer | Eugene Konev <ejka@imfi.kspu.ru> | 2007-10-04 02:26:27 +0000 |
commit | 6efb8c8df8cd8ccef6866e5c1f5e8b008b1c1c3f (patch) | |
tree | 20d5f4376dfa44f938be51450650f55ab31cef3a /target/linux/generic-2.6/patches-2.6.23/006-gcc4_inline_fix.patch | |
parent | e12359aa29fcb7c3adc97264bcdc48b10c0472ec (diff) | |
download | mtk-20170518-6efb8c8df8cd8ccef6866e5c1f5e8b008b1c1c3f.zip mtk-20170518-6efb8c8df8cd8ccef6866e5c1f5e8b008b1c1c3f.tar.gz mtk-20170518-6efb8c8df8cd8ccef6866e5c1f5e8b008b1c1c3f.tar.bz2 |
add generic 2.6.23 patches and config
SVN-Revision: 9114
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.23/006-gcc4_inline_fix.patch')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.23/006-gcc4_inline_fix.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.23/006-gcc4_inline_fix.patch b/target/linux/generic-2.6/patches-2.6.23/006-gcc4_inline_fix.patch new file mode 100644 index 0000000..cacbb50 --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.23/006-gcc4_inline_fix.patch @@ -0,0 +1,13 @@ +Index: linux-2.6.23-rc6/include/asm-mips/system.h +=================================================================== +--- linux-2.6.23-rc6.orig/include/asm-mips/system.h 2007-09-21 16:23:54.000000000 +0800 ++++ linux-2.6.23-rc6/include/asm-mips/system.h 2007-09-21 16:23:57.000000000 +0800 +@@ -180,7 +180,7 @@ + if something tries to do an invalid xchg(). */ + extern void __xchg_called_with_bad_pointer(void); + +-static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size) ++static __always_inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size) + { + switch (size) { + case 4: |