summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authormatteo <matteo@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-03-05 12:59:54 +0000
committermatteo <matteo@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-03-05 12:59:54 +0000
commit758e1cc135a5af7881bea1ba1af1fe419826db03 (patch)
tree4da0446829269e217fb789125bc0ce1b1e9d3515 /target
parenta30db55ac8677f9a4c99cde0c1f8ef1091a259ae (diff)
[AR7] fixed_phy seems to be broken, this simple workaround fixes it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10545 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar7/patches-2.6.24/150-cpmac_up_and_running.diff27
1 files changed, 27 insertions, 0 deletions
diff --git a/target/linux/ar7/patches-2.6.24/150-cpmac_up_and_running.diff b/target/linux/ar7/patches-2.6.24/150-cpmac_up_and_running.diff
new file mode 100644
index 000000000..6a0f42d17
--- /dev/null
+++ b/target/linux/ar7/patches-2.6.24/150-cpmac_up_and_running.diff
@@ -0,0 +1,27 @@
+--- linux-2.6.24.2/drivers/net/cpmac.c 2008-03-05 13:45:56.000000000 +0100
++++ linux-2.6.24.2/drivers/net/cpmac.c 2008-03-05 13:46:24.000000000 +0100
+@@ -841,7 +841,8 @@
+ int new_state = 0;
+
+ spin_lock(&priv->lock);
+- if (priv->phy->link) {
++ if (1 /* priv->phy->link */ ) {
++ netif_carrier_on(dev);
+ netif_start_queue(dev);
+ if (priv->phy->duplex != priv->oldduplex) {
+ new_state = 1;
+@@ -853,11 +854,11 @@
+ priv->oldspeed = priv->phy->speed;
+ }
+
+- if (!priv->oldlink) {
++ /*if (!priv->oldlink) {
+ new_state = 1;
+- priv->oldlink = 1;
++ priv->oldlink = 1;*/
+ netif_schedule(dev);
+- }
++ /*}*/
+ } else if (priv->oldlink) {
+ netif_stop_queue(dev);
+ new_state = 1;