iwlagn: finally kill the pointer to pci_dev from iwl-dev.h
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Tue, 31 May 2011 07:07:00 +0000 (10:07 +0300)
committerWey-Yi Guy <wey-yi.w.guy@intel.com>
Sat, 18 Jun 2011 15:18:32 +0000 (08:18 -0700)
All pci related stuff is in iwl-pci.c.

Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
drivers/net/wireless/iwlwifi/iwl-agn.c
drivers/net/wireless/iwlwifi/iwl-dev.h

index e2b319f..17228f7 100644 (file)
@@ -32,9 +32,6 @@
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/init.h>
-/* TODO: remove include to PCI*.h when no PCI will be needed here */
-#include <linux/pci.h>
-#include <linux/pci-aspm.h>
 #include <linux/slab.h>
 #include <linux/dma-mapping.h>
 #include <linux/delay.h>
@@ -3488,12 +3485,6 @@ int iwl_probe(void *bus_specific, struct iwl_bus_ops *bus_ops,
        /************************
         * 1. Allocating HW data
         ************************/
-       /* TODO: remove this nasty hack when PCI encapsulation is done
-        * assumes that struct pci_dev * is at the very beginning of whatever
-        * is pointed by bus_specific */
-       unsigned long *ppdev = bus_specific;
-       struct pci_dev *pdev = (struct pci_dev *) *ppdev;
-
        hw = iwl_alloc_all(cfg);
        if (!hw) {
                err = -ENOMEM;
@@ -3512,7 +3503,6 @@ int iwl_probe(void *bus_specific, struct iwl_bus_ops *bus_ops,
 
        IWL_DEBUG_INFO(priv, "*** LOAD DRIVER ***\n");
        priv->cfg = cfg;
-       priv->pci_dev = pdev;
        priv->inta_mask = CSR_INI_SET_MASK;
 
        /* is antenna coupling more than 35dB ? */
index f6b54c6..34f9d0f 100644 (file)
@@ -1293,10 +1293,6 @@ struct iwl_priv {
        spinlock_t reg_lock;    /* protect hw register access */
        struct mutex mutex;
 
-       /* TODO: remove this after PCI abstraction is done */
-       /* basic pci-network driver stuff */
-       struct pci_dev *pci_dev;
-
        struct iwl_bus bus;     /* bus specific data */
 
        /* microcode/device supports multiple contexts */