aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/patches-2.6.24
diff options
context:
space:
mode:
authorMatteo Croce <matteo@openwrt.org>2008-04-07 13:49:44 +0000
committerMatteo Croce <matteo@openwrt.org>2008-04-07 13:49:44 +0000
commit0a6310e1c8cba6658f42521f0fc70acf18d7e63d (patch)
tree57ab9937b6df1372db42321e3af7a43cbff5598d /target/linux/ar7/patches-2.6.24
parent21ccc9c8a9f106419b1ee9109362ecb589fd4dd6 (diff)
downloadupstream-0a6310e1c8cba6658f42521f0fc70acf18d7e63d.tar.gz
upstream-0a6310e1c8cba6658f42521f0fc70acf18d7e63d.tar.bz2
upstream-0a6310e1c8cba6658f42521f0fc70acf18d7e63d.zip
ar7: remove useless volatiles
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10757 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar7/patches-2.6.24')
-rw-r--r--target/linux/ar7/patches-2.6.24/100-board_support.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar7/patches-2.6.24/100-board_support.patch b/target/linux/ar7/patches-2.6.24/100-board_support.patch
index eefeb65a44..b9ee68737f 100644
--- a/target/linux/ar7/patches-2.6.24/100-board_support.patch
+++ b/target/linux/ar7/patches-2.6.24/100-board_support.patch
@@ -50,7 +50,7 @@ Index: linux-2.6.23-rc6/arch/mips/kernel/traps.c
+ *(u32 *)(ebase + 0x20C) = 0x00000000;
+ flush_icache_range(ebase + 0x200, ebase + 0x210);
+ } else {
-+ *(volatile u32 *)(ebase + 0x200) =
++ *(u32 *)(ebase + 0x200) =
+ 0x08000000 | (0x03ffffff & (handler >> 2));
+ flush_icache_range(ebase + 0x200, ebase + 0x204);
+ }