summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-05-08 16:58:08 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-05-08 16:58:08 +0000
commit54b097684622b214decc396550de5758137c08b0 (patch)
tree74672855e4bce360441f19a59cbb31c11e8d511c /target
parentff9add18776b9c1fb1dd645242c62c1aa757ef07 (diff)
[ar7] prevent race between clocks and devices registration (#6532)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21404 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar7/patches-2.6.32/130-clocks_devices_init.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/target/linux/ar7/patches-2.6.32/130-clocks_devices_init.patch b/target/linux/ar7/patches-2.6.32/130-clocks_devices_init.patch
new file mode 100644
index 000000000..3175068f5
--- /dev/null
+++ b/target/linux/ar7/patches-2.6.32/130-clocks_devices_init.patch
@@ -0,0 +1,27 @@
+commit e09dd7ae2076782c47a8b729b989e20af882415f
+Author: Florian Fainelli <florian@openwrt.org>
+Date: Sat May 8 16:03:34 2010 +0200
+
+ AR7: prevent race between clocks and devices initialization
+
+ ar7_clocks_init and ar7_register_devices are both called at arch_initcall
+ however, ar7_register_devices relies on clocks to be initialized, and clock.o
+ is to be linked later. Fix this by making clock.o be linked earlier.
+
+ Reported-by: Michael J. Evans <mjevans1983@gmail.com>
+ Signed-off-by: Florian Fainelli <florian@openwrt.org>
+
+diff --git a/arch/mips/ar7/Makefile b/arch/mips/ar7/Makefile
+index 26bc5da..2df8910 100644
+--- a/arch/mips/ar7/Makefile
++++ b/arch/mips/ar7/Makefile
+@@ -5,7 +5,7 @@ obj-y := \
+ memory.o \
+ irq.o \
+ time.o \
++ clock.o \
+ platform.o \
+- gpio.o \
+- clock.o
++ gpio.o
+ EXTRA_CFLAGS += -Werror