backports: remove alx patch for < 2.6.24
authorJohannes Berg <johannes.berg@intel.com>
Fri, 23 Aug 2013 11:28:34 +0000 (13:28 +0200)
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>
Tue, 27 Aug 2013 18:58:20 +0000 (11:58 -0700)
Since we don't support kernels before 2.6.24 anymore
there's no need to carry this patch.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
patches/collateral-evolutions/network/0007-pci_dev_dev_flags/INFO [deleted file]
patches/collateral-evolutions/network/0007-pci_dev_dev_flags/alx.patch [deleted file]

diff --git a/patches/collateral-evolutions/network/0007-pci_dev_dev_flags/INFO b/patches/collateral-evolutions/network/0007-pci_dev_dev_flags/INFO
deleted file mode 100644 (file)
index fc95b61..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-The struct pci_dev dev_flags member was added as of
-v2.6.24 via ba698ad4. This collateral evolution can be
-enhanced and backported atomically through these series
-of patches. The end goal is to optimize this in SmPL form.
-
-mcgrof@frijol ~/linux-stable (git::master)$ git describe --contains ba698ad4
-v2.6.24-rc2~28^2~6
-
-commit ba698ad4b7e466cbb4a8bde6b9da8080ab06808d
-Author: David Miller <davem@davemloft.net>
-Date:   Thu Oct 25 01:16:30 2007 -0700
-
-    PCI: Add quirk for devices which disable MSI when INTX_DISABLE is set.
-    
-    A reasonably common problem with some devices is that they will
-    disable MSI generation when the INTX_DISABLE bit is set in the
-    PCI_COMMAND register.
-    
-    Quirk this explicitly, guarding the pci_intx() calls in msi.c with
-    this quirk indication.
-    
-    The first entries for this quirk are for 5714 and 5780 Tigon3 chips,
-    and thus we can remove the workaround code from the tg3.c driver.
-    
-    Signed-off-by: David S. Miller <davem@davemloft.net>
-    Acked-by: Michael Chan <mchan@broadcom.com>
-    Acked-by: Jeff Garzik <jgarzik@redhat.com>
-    Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
diff --git a/patches/collateral-evolutions/network/0007-pci_dev_dev_flags/alx.patch b/patches/collateral-evolutions/network/0007-pci_dev_dev_flags/alx.patch
deleted file mode 100644 (file)
index 729fa6e..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/drivers/net/ethernet/atheros/alx/main.c
-+++ b/drivers/net/ethernet/atheros/alx/main.c
-@@ -1266,8 +1266,10 @@ static int alx_probe(struct pci_dev *pde
-       netdev->irq = pdev->irq;
-       netdev->watchdog_timeo = ALX_WATCHDOG_TIME;
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
-       if (ent->driver_data & ALX_DEV_QUIRK_MSI_INTX_DISABLE_BUG)
-               pdev->dev_flags |= PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG;
-+#endif
-       err = alx_init_sw(alx);
-       if (err) {