summaryrefslogtreecommitdiffstats
path: root/package/ep80579-drivers/patches/104-iegbe_group_address_list_and_its_count.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2012-10-17 22:45:58 +0000
committerJohn Crispin <john@openwrt.org>2012-10-17 22:45:58 +0000
commita34499e09569241a21203c1327f3bfa8a888584f (patch)
tree9365698437d0b2ef8cfe715d9c9e8d5434d63353 /package/ep80579-drivers/patches/104-iegbe_group_address_list_and_its_count.patch
parent965710d3e17738006bb22f01584cfe56319ceac1 (diff)
downloadmaster-31e0f0ae-a34499e09569241a21203c1327f3bfa8a888584f.tar.gz
master-31e0f0ae-a34499e09569241a21203c1327f3bfa8a888584f.tar.bz2
master-31e0f0ae-a34499e09569241a21203c1327f3bfa8a888584f.zip
move lots of kernel related packages to the new system/ folder
SVN-Revision: 33830
Diffstat (limited to 'package/ep80579-drivers/patches/104-iegbe_group_address_list_and_its_count.patch')
-rw-r--r--package/ep80579-drivers/patches/104-iegbe_group_address_list_and_its_count.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/package/ep80579-drivers/patches/104-iegbe_group_address_list_and_its_count.patch b/package/ep80579-drivers/patches/104-iegbe_group_address_list_and_its_count.patch
deleted file mode 100644
index c6eced6a5c..0000000000
--- a/package/ep80579-drivers/patches/104-iegbe_group_address_list_and_its_count.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/Embedded/src/GbE/iegbe_main.c
-+++ b/Embedded/src/GbE/iegbe_main.c
-@@ -2188,7 +2188,7 @@ int mta_reg_count = E1000_NUM_MTA_REGIST
- }
- }
-
-- if (netdev->uc_count > rar_entries - 1) {
-+ if (netdev->uc.count > rar_entries - 1) {
- rctl |= E1000_RCTL_UPE;
- } else if (!(netdev->flags & IFF_PROMISC)) {
- rctl &= ~E1000_RCTL_UPE;
-@@ -2212,7 +2212,7 @@ int mta_reg_count = E1000_NUM_MTA_REGIST
- */
- i = 1;
- if (use_uc)
-- list_for_each_entry(ha, &netdev->uc_list, list) {
-+ list_for_each_entry(ha, &netdev->uc.list, list) {
- if (i == rar_entries)
- break;
- iegbe_rar_set(hw, ha->addr, i++);