diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-03-06 16:30:37 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-03-07 13:51:47 -0500 |
commit | 0692fe41b36159be5d8c7d4eef0699e79c383c85 (patch) | |
tree | c529bc1099c2a9bcba981845248571a8b02d3c25 /drivers/net/wireless/iwlwifi/iwl-debugfs.c | |
parent | e19918855dc4822a24787a6d0048205b011e5ecb (diff) |
iwlwifi: split out firmware store
Through the driver, struct iwl_fw will
store the firmware. Split this out into
a separate file, iwl-fw.h, and make all
other code use it. To do this, also move
the log pointers into it, and remove the
knowledge of "nic" from everything.
Now the op_mode has a fw pointer, and
(unfortunately) for now the shared data
also needs to keep one for the transport
to access dump the error log -- I think
that will move later.
Since I wanted to constify the firmware
pointers, some more changes were needed.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
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-debugfs.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-debugfs.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-debugfs.c b/drivers/net/wireless/iwlwifi/iwl-debugfs.c index b6740c33b519..0e63cb70c713 100644 --- a/drivers/net/wireless/iwlwifi/iwl-debugfs.c +++ b/drivers/net/wireless/iwlwifi/iwl-debugfs.c | |||
@@ -235,12 +235,11 @@ static ssize_t iwl_dbgfs_sram_read(struct file *file, | |||
235 | 235 | ||
236 | /* default is to dump the entire data segment */ | 236 | /* default is to dump the entire data segment */ |
237 | if (!priv->dbgfs_sram_offset && !priv->dbgfs_sram_len) { | 237 | if (!priv->dbgfs_sram_offset && !priv->dbgfs_sram_len) { |
238 | struct iwl_nic *nic = nic(priv); | ||
239 | priv->dbgfs_sram_offset = 0x800000; | 238 | priv->dbgfs_sram_offset = 0x800000; |
240 | if (nic->shrd->ucode_type == IWL_UCODE_INIT) | 239 | if (priv->shrd->ucode_type == IWL_UCODE_INIT) |
241 | priv->dbgfs_sram_len = nic->fw.ucode_init.data.len; | 240 | priv->dbgfs_sram_len = priv->fw->ucode_init.data.len; |
242 | else | 241 | else |
243 | priv->dbgfs_sram_len = nic->fw.ucode_rt.data.len; | 242 | priv->dbgfs_sram_len = priv->fw->ucode_rt.data.len; |
244 | } | 243 | } |
245 | len = priv->dbgfs_sram_len; | 244 | len = priv->dbgfs_sram_len; |
246 | 245 | ||
@@ -343,7 +342,7 @@ static ssize_t iwl_dbgfs_wowlan_sram_read(struct file *file, | |||
343 | 342 | ||
344 | return simple_read_from_buffer(user_buf, count, ppos, | 343 | return simple_read_from_buffer(user_buf, count, ppos, |
345 | priv->wowlan_sram, | 344 | priv->wowlan_sram, |
346 | nic(priv)->fw.ucode_wowlan.data.len); | 345 | priv->fw->ucode_wowlan.data.len); |
347 | } | 346 | } |
348 | static ssize_t iwl_dbgfs_stations_read(struct file *file, char __user *user_buf, | 347 | static ssize_t iwl_dbgfs_stations_read(struct file *file, char __user *user_buf, |
349 | size_t count, loff_t *ppos) | 348 | size_t count, loff_t *ppos) |