projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
kernel: add scsi cdrom support
[openwrt.git]
/
target
/
linux
/
lantiq
/
patches
/
230-xway_etop.patch
diff --git
a/target/linux/lantiq/patches/230-xway_etop.patch
b/target/linux/lantiq/patches/230-xway_etop.patch
index
2f10a52
..
2ba8427
100644
(file)
--- a/
target/linux/lantiq/patches/230-xway_etop.patch
+++ b/
target/linux/lantiq/patches/230-xway_etop.patch
@@
-1,6
+1,6
@@
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
-@@ -
358,6 +358
,12 @@
+@@ -
235,6 +235
,12 @@
source "drivers/net/arm/Kconfig"
source "drivers/net/arm/Kconfig"
@@
-15,7
+15,7
@@
depends on ARM || MIPS || SUPERH
--- a/drivers/net/Makefile
+++ b/drivers/net/Makefile
depends on ARM || MIPS || SUPERH
--- a/drivers/net/Makefile
+++ b/drivers/net/Makefile
-@@ -21
3,6 +213
,7 @@
+@@ -21
2,6 +212
,7 @@
obj-$(CONFIG_MVME16x_NET) += 82596.o
obj-$(CONFIG_BVME6000_NET) += 82596.o
obj-$(CONFIG_SC92031) += sc92031.o
obj-$(CONFIG_MVME16x_NET) += 82596.o
obj-$(CONFIG_BVME6000_NET) += 82596.o
obj-$(CONFIG_SC92031) += sc92031.o
@@
-25,7
+25,7
@@
obj-$(CONFIG_LP486E) += lp486e.o
--- /dev/null
+++ b/drivers/net/lantiq_etop.c
obj-$(CONFIG_LP486E) += lp486e.o
--- /dev/null
+++ b/drivers/net/lantiq_etop.c
-@@ -0,0 +1,55
2
@@
+@@ -0,0 +1,55
7
@@
+/*
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
+/*
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
@@
-201,8
+201,13
@@
+
+ skb_put(skb, len);
+ skb->dev = dev;
+
+ skb_put(skb, len);
+ skb->dev = dev;
-+ skb->protocol = eth_type_trans(skb, dev);
-+ netif_rx(skb);
++
++ if (priv->phydev && priv->phydev->netif_rx) {
++ priv->phydev->netif_rx(skb);
++ } else {
++ skb->protocol = eth_type_trans(skb, dev);
++ netif_rx(skb);
++ }
+
+ priv->stats.rx_packets++;
+ priv->stats.rx_bytes += len;
+
+ priv->stats.rx_packets++;
+ priv->stats.rx_bytes += len;
This page took
0.025889 seconds
and
4
git commands to generate.