aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/coldfire/patches/035-mcfv4e_bitops_cleanup.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2010-11-22 13:31:46 +0000
committerImre Kaloz <kaloz@openwrt.org>2010-11-22 13:31:46 +0000
commit41d306c95b13e322023c5795ee46f98cbb723434 (patch)
treea5e99f7798071ae6ca4b0fbd43d490c0987393db /target/linux/coldfire/patches/035-mcfv4e_bitops_cleanup.patch
parent69b87e767b7dc9ffe8c3081e9921aa0891d068ee (diff)
downloadupstream-41d306c95b13e322023c5795ee46f98cbb723434.tar.gz
upstream-41d306c95b13e322023c5795ee46f98cbb723434.tar.bz2
upstream-41d306c95b13e322023c5795ee46f98cbb723434.zip
[coldfire]: remove 2.6.25 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24088 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/coldfire/patches/035-mcfv4e_bitops_cleanup.patch')
-rw-r--r--target/linux/coldfire/patches/035-mcfv4e_bitops_cleanup.patch83
1 files changed, 0 insertions, 83 deletions
diff --git a/target/linux/coldfire/patches/035-mcfv4e_bitops_cleanup.patch b/target/linux/coldfire/patches/035-mcfv4e_bitops_cleanup.patch
deleted file mode 100644
index c4f8cecdbc..0000000000
--- a/target/linux/coldfire/patches/035-mcfv4e_bitops_cleanup.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-From 898b269952d096ce3f990c51b02457c27e16b83c Mon Sep 17 00:00:00 2001
-From: Kurt Mahan <kmahan@freescale.com>
-Date: Sun, 9 Dec 2007 02:25:49 -0700
-Subject: [PATCH] Clean up formatting.
-
-LTIBName: mcfv4e-bitops-cleanup
-Signed-off-by: Kurt Mahan <kmahan@freescale.com>
----
- include/asm-m68k/bitops.h | 21 ++++++++++++++-------
- 1 files changed, 14 insertions(+), 7 deletions(-)
-
---- a/include/asm-m68k/bitops.h
-+++ b/include/asm-m68k/bitops.h
-@@ -478,7 +478,8 @@ static __inline__ int __constant_coldfir
- return retval;
- }
- #else
--static __inline__ int __constant_coldfire_test_and_set_bit(int nr,volatile void * vaddr)
-+static __inline__ int __constant_coldfire_test_and_set_bit(int nr,
-+ volatile void *vaddr)
- {
- char retval;
- volatile char *p = &((volatile char *)vaddr)[(nr^31) >> 3];
-@@ -516,7 +517,8 @@ static __inline__ void __constant_coldfi
- : "+QUd" (*p) : "di" (nr & 7));
- }
- #else
--static __inline__ void __constant_coldfire_set_bit(int nr, volatile void * vaddr)
-+static __inline__ void __constant_coldfire_set_bit(int nr,
-+ volatile void *vaddr)
- {
- volatile char *p = &((volatile char *)vaddr)[(nr^31) >> 3];
- __asm__ __volatile__ ("bset %1,(%3)"
-@@ -524,7 +526,8 @@ static __inline__ void __constant_coldfi
- }
- #endif
-
--static __inline__ void __generic_coldfire_set_bit(int nr, volatile void *vaddr)
-+static __inline__ void __generic_coldfire_set_bit(int nr,
-+ volatile void *vaddr)
- {
- __asm__ __volatile__ ("bset %1,%0"
- : "=m" (((volatile char *)vaddr)[(nr^31) >> 3])
-@@ -552,7 +555,8 @@ static __inline__ int __constant_coldfir
- return retval;
- }
- #else
--static __inline__ int __constant_coldfire_test_and_clear_bit(int nr, volatile void *vaddr)
-+static __inline__ int __constant_coldfire_test_and_clear_bit(int nr,
-+ volatile void *vaddr)
- {
- char retval;
- volatile char *p = &((volatile char *)vaddr)[(nr^31) >> 3];
-@@ -599,7 +603,8 @@ static __inline__ void __constant_coldfi
- : "+QUd" (*p) : "id" (nr & 7));
- }
- #else
--static __inline__ void __constant_coldfire_clear_bit(int nr, volatile void * vaddr)
-+static __inline__ void __constant_coldfire_clear_bit(int nr,
-+ volatile void *vaddr)
- {
- volatile char *p = &((volatile char *)vaddr)[(nr^31) >> 3];
- __asm__ __volatile__ ("bclr %1,(%3)"
-@@ -636,7 +641,8 @@ static __inline__ int __constant_coldfir
- return retval;
- }
- #else
--static __inline__ int __constant_coldfire_test_and_change_bit(int nr, volatile void * vaddr)
-+static __inline__ int __constant_coldfire_test_and_change_bit(int nr,
-+ volatile void *vaddr)
- {
- char retval;
- volatile char *p = &((volatile char *)vaddr)[(nr^31) >> 3];
-@@ -678,7 +684,8 @@ static __inline__ void __constant_coldfi
- : "+QUd" (*p) : "id" (nr & 7));
- }
- #else
--static __inline__ void __constant_coldfire_change_bit(int nr, volatile void * vaddr)
-+static __inline__ void __constant_coldfire_change_bit(int nr,
-+ volatile void *vaddr)
- {
- volatile char *p = &((volatile char *)vaddr)[(nr^31) >> 3];
- __asm__ __volatile__ ("bchg %1,(%3)"