diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2010-01-09 23:17:49 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2010-01-09 23:17:49 +0000 |
commit | dd4942818f14e2f63ec06691ccca9dad2627d779 (patch) | |
tree | f45907d9b54f6c7253ec07a541d4d85d574cfa8b /target/linux/generic-2.6/patches-2.6.31 | |
parent | e3eb0dfcdaf00c09cd2f05cf5177fb15f18f0fa4 (diff) | |
download | upstream-dd4942818f14e2f63ec06691ccca9dad2627d779.tar.gz upstream-dd4942818f14e2f63ec06691ccca9dad2627d779.tar.bz2 upstream-dd4942818f14e2f63ec06691ccca9dad2627d779.zip |
remove unneeded patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19088 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.31')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.31/910-hostap_tx_queue_len_fix.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.31/910-hostap_tx_queue_len_fix.patch b/target/linux/generic-2.6/patches-2.6.31/910-hostap_tx_queue_len_fix.patch deleted file mode 100644 index b421662d9c..0000000000 --- a/target/linux/generic-2.6/patches-2.6.31/910-hostap_tx_queue_len_fix.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/drivers/net/wireless/hostap/hostap_main.c -+++ b/drivers/net/wireless/hostap/hostap_main.c -@@ -875,15 +875,16 @@ void hostap_setup_dev(struct net_device - - switch(type) { - case HOSTAP_INTERFACE_AP: -+ dev->tx_queue_len = 0; /* use main radio device queue */ - dev->netdev_ops = &hostap_mgmt_netdev_ops; - dev->type = ARPHRD_IEEE80211; - dev->header_ops = &hostap_80211_ops; - break; - case HOSTAP_INTERFACE_MASTER: -- dev->tx_queue_len = 0; /* use main radio device queue */ - dev->netdev_ops = &hostap_master_ops; - break; - default: -+ dev->tx_queue_len = 0; /* use main radio device queue */ - dev->netdev_ops = &hostap_netdev_ops; - } - |