diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2011-05-31 08:58:18 +0200 |
---|---|---|
committer | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2011-06-18 17:18:01 +0200 |
commit | 85aed7c48113dfcdc913008481c46346af0db69e (patch) | |
tree | 75831a2ec540039470c295a81c2059a24a4531f5 | |
parent | iwlagn: add a method to get the HW ID description as a string to iwl_bus_ops (diff) | |
download | linux-85aed7c48113dfcdc913008481c46346af0db69e.tar.xz linux-85aed7c48113dfcdc913008481c46346af0db69e.zip |
iwlagn: don't read the PCI_REVISION_ID from iwl-agn.c
The PCI_REVISION_ID is read and printed in iwl_pci_probe anyway using pr_info
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index eeb31bcfc741..1ff8e4b3e960 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c @@ -3352,10 +3352,6 @@ struct ieee80211_ops iwlagn_hw_ops = { static u32 iwl_hw_detect(struct iwl_priv *priv) { - u8 rev_id; - - pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &rev_id); - IWL_DEBUG_INFO(priv, "HW Revision ID = 0x%X\n", rev_id); return iwl_read32(priv, CSR_HW_REV); } |