diff options
author | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2010-07-31 11:34:05 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-08-16 15:26:37 -0400 |
commit | 3867fe0477a1e23df3d05131320d7b0075a9bed0 (patch) | |
tree | f45351d19078c47adaa750224557dd6c9431f7e6 /drivers/net/wireless/iwlwifi/iwl-agn.c | |
parent | 139455c3912bfed4bd42824d59c82113cc667f91 (diff) |
iwlwifi: make iwl_hw_detect static to _agn
iwl_hw_detect() only used by _agn, make it static
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-agn.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index d3de5096a620..8d4a2b569f05 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
@@ -3883,6 +3883,13 @@ static struct ieee80211_ops iwl_hw_ops = { | |||
3883 | .flush = iwl_mac_flush, | 3883 | .flush = iwl_mac_flush, |
3884 | }; | 3884 | }; |
3885 | 3885 | ||
3886 | static void iwl_hw_detect(struct iwl_priv *priv) | ||
3887 | { | ||
3888 | priv->hw_rev = _iwl_read32(priv, CSR_HW_REV); | ||
3889 | priv->hw_wa_rev = _iwl_read32(priv, CSR_HW_REV_WA_REG); | ||
3890 | pci_read_config_byte(priv->pci_dev, PCI_REVISION_ID, &priv->rev_id); | ||
3891 | } | ||
3892 | |||
3886 | static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | 3893 | static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
3887 | { | 3894 | { |
3888 | int err = 0; | 3895 | int err = 0; |