diff options
author | Mirko Vogt <mirko@openwrt.org> | 2009-07-05 11:37:52 +0000 |
---|---|---|
committer | Mirko Vogt <mirko@openwrt.org> | 2009-07-05 11:37:52 +0000 |
commit | 36293686234f12e5f5fc166a6b38a1efec36da2d (patch) | |
tree | 6b6266b6489c814295db61472c551f0cc3d0d99d /target/linux/s3c24xx/patches-2.6.29/060-patch-ar6000.patch | |
parent | 254b492ff52430cb1b8b3d26e17a0363688a2742 (diff) | |
download | mtk-20170518-36293686234f12e5f5fc166a6b38a1efec36da2d.zip mtk-20170518-36293686234f12e5f5fc166a6b38a1efec36da2d.tar.gz mtk-20170518-36293686234f12e5f5fc166a6b38a1efec36da2d.tar.bz2 |
purge out config and patches for 2.6.29 as 2.6.30.1 is now default and stable
SVN-Revision: 16685
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.29/060-patch-ar6000.patch')
-rw-r--r-- | target/linux/s3c24xx/patches-2.6.29/060-patch-ar6000.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.29/060-patch-ar6000.patch b/target/linux/s3c24xx/patches-2.6.29/060-patch-ar6000.patch deleted file mode 100644 index 6e5ba87..0000000 --- a/target/linux/s3c24xx/patches-2.6.29/060-patch-ar6000.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff -ruN linux-2.6.29.orig/drivers/ar6000/ar6000/ar6000_drv.c linux-2.6.29/drivers/ar6000/ar6000/ar6000_drv.c ---- linux-2.6.29.orig/drivers/ar6000/ar6000/ar6000_drv.c 2009-06-23 11:24:09.000000000 +0200 -+++ linux-2.6.29/drivers/ar6000/ar6000/ar6000_drv.c 2009-06-23 12:09:00.000000000 +0200 -@@ -213,6 +213,7 @@ - int ar6000_init(struct net_device *dev); - static int ar6000_open(struct net_device *dev); - static int ar6000_close(struct net_device *dev); -+static int ar6000_cleanup(struct net_device *dev); - static void ar6000_init_control_info(AR_SOFTC_T *ar); - static int ar6000_data_tx(struct sk_buff *skb, struct net_device *dev); - -@@ -984,6 +985,7 @@ - unregister_netdev(dev); - } else { - ar6000_close(dev); -+ ar6000_cleanup(dev); - } - - free_raw_buffers(ar); -@@ -1090,8 +1092,15 @@ - static int - ar6000_close(struct net_device *dev) - { -- AR_SOFTC_T *ar = netdev_priv(dev); -+ /* Stop the transmit queues */ -+ netif_stop_queue(dev); -+ return 0; -+} - -+static int -+ar6000_cleanup(struct net_device *dev) -+{ -+ AR_SOFTC_T *ar = netdev_priv(dev); - /* Stop the transmit queues */ - netif_stop_queue(dev); - |