backport r23737
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 31 Oct 2010 22:18:49 +0000 (22:18 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 31 Oct 2010 22:18:49 +0000 (22:18 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@23749 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar7/patches-2.6.32/160-vlynq_try_remote_first.patch [new file with mode: 0644]

diff --git a/target/linux/ar7/patches-2.6.32/160-vlynq_try_remote_first.patch b/target/linux/ar7/patches-2.6.32/160-vlynq_try_remote_first.patch
new file mode 100644 (file)
index 0000000..437bc89
--- /dev/null
@@ -0,0 +1,20 @@
+--- a/drivers/vlynq/vlynq.c
++++ b/drivers/vlynq/vlynq.c
+@@ -514,9 +514,14 @@ static int __vlynq_enable_device(struct
+                               !__vlynq_try_external(dev))
+                               return 0;
+               } else {
+-                      if (!__vlynq_try_external(dev) ||
+-                              !__vlynq_try_local(dev)    ||
+-                              !__vlynq_try_remote(dev))
++            /* XXX: I don't really know what difference it makes, if the order
++             * of the following calls is changed, but at least in this order
++             * my fritzbox doesn't hang at startup as in
++             * https://dev.openwrt.org/ticket/7324
++             */
++                      if (!__vlynq_try_remote(dev) ||
++                              !__vlynq_try_local(dev)  ||
++                              !__vlynq_try_external(dev))
+                               return 0;
+               }
+               break;