diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-05-03 09:05:39 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-05-03 09:05:39 +0000 |
commit | 2d32caa106539cd47a9dd0395e1f259502cd398b (patch) | |
tree | c38bf0ef51265d87e6dabc0dd805dbd5d752a3a9 /package/acx-mac80211/patches/004-vlynq_fixes.patch | |
parent | 8e61b43b863fe6d8c5cb94d4bac406f951bcb15f (diff) |
[package] update acx-mac80211 to 20100422, patch from Bernhard Loos
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21335 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx-mac80211/patches/004-vlynq_fixes.patch')
-rw-r--r-- | package/acx-mac80211/patches/004-vlynq_fixes.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/package/acx-mac80211/patches/004-vlynq_fixes.patch b/package/acx-mac80211/patches/004-vlynq_fixes.patch deleted file mode 100644 index 3e1a8bbc6c..0000000000 --- a/package/acx-mac80211/patches/004-vlynq_fixes.patch +++ /dev/null @@ -1,47 +0,0 @@ ---- a/pci.c -+++ b/pci.c -@@ -4309,7 +4309,7 @@ static __devinit int vlynq_probe(struct - addr = (u32)ioremap(vdev->mem_start, 0x1000); - if (!addr) { - printk(KERN_ERR "acx: %s: failed to remap io memory\n", -- vdev->dev.bus_id); -+ dev_name(&vdev->dev)); - result = -ENXIO; - goto fail; - } -@@ -4323,7 +4323,7 @@ static __devinit int vlynq_probe(struct - ieee = ieee80211_alloc_hw(sizeof(struct acx_device), &acxpci_hw_ops); - if (!ieee) { - printk("acx: could not allocate ieee80211 structure %s\n", -- vdev->dev.bus_id); -+ dev_name(&vdev->dev)); - goto fail_alloc_netdev; - } - ieee->flags &= ~IEEE80211_HW_RX_INCLUDES_FCS; -@@ -4365,7 +4365,7 @@ static __devinit int vlynq_probe(struct - - printk("acx: found %s-based wireless network card at %s, irq:%d, " - "phymem:0x%x, mem:0x%p\n", -- match->name, vdev->dev.bus_id, adev->irq, -+ match->name, dev_name(&vdev->dev), adev->irq, - vdev->mem_start, adev->iobase); - log(L_ANY, "acx: the initial debug setting is 0x%04X\n", acx_debug); - -@@ -4416,7 +4416,7 @@ static __devinit int vlynq_probe(struct - * firmware operations happening in parallel or uninitialized data */ - - -- acx_proc_register_entries(ieee); -+ acx_proc_register_entries(ieee, 0); - - /* Now we have our device, so make sure the kernel doesn't try - * to send packets even though we're not associated to a network yet */ -@@ -4536,7 +4536,7 @@ static void vlynq_remove(struct vlynq_de - CLEAR_BIT(adev->dev_state_mask, ACX_STATE_IFACE_UP); - } - -- acx_proc_unregister_entries(adev->ieee); -+ acx_proc_unregister_entries(adev->ieee, 0); - - /* finally, clean up PCI bus state */ - acxpci_s_delete_dma_regions(adev); |