1 Index: acx-mac80211-20100302/pci.c
2 ===================================================================
3 --- acx-mac80211-20100302.orig/pci.c 2010-03-06 22:22:02.000000000 +0100
4 +++ acx-mac80211-20100302/pci.c 2010-03-06 22:22:29.000000000 +0100
6 addr = (u32)ioremap(vdev->mem_start, 0x1000);
8 printk(KERN_ERR "acx: %s: failed to remap io memory\n",
10 + dev_name(&vdev->dev));
15 ieee = ieee80211_alloc_hw(sizeof(struct acx_device), &acxpci_hw_ops);
17 printk("acx: could not allocate ieee80211 structure %s\n",
19 + dev_name(&vdev->dev));
20 goto fail_alloc_netdev;
22 ieee->flags &= ~IEEE80211_HW_RX_INCLUDES_FCS;
25 printk("acx: found %s-based wireless network card at %s, irq:%d, "
26 "phymem:0x%x, mem:0x%p\n",
27 - match->name, vdev->dev.bus_id, adev->irq,
28 + match->name, dev_name(&vdev->dev), adev->irq,
29 vdev->mem_start, adev->iobase);
30 log(L_ANY, "acx: the initial debug setting is 0x%04X\n", acx_debug);
33 * firmware operations happening in parallel or uninitialized data */
36 - acx_proc_register_entries(ieee);
37 + acx_proc_register_entries(ieee, 0);
39 /* Now we have our device, so make sure the kernel doesn't try
40 * to send packets even though we're not associated to a network yet */
42 CLEAR_BIT(adev->dev_state_mask, ACX_STATE_IFACE_UP);
45 - acx_proc_unregister_entries(adev->ieee);
46 + acx_proc_unregister_entries(adev->ieee, 0);
48 /* finally, clean up PCI bus state */
49 acxpci_s_delete_dma_regions(adev);