diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2008-03-25 19:33:37 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-03-27 16:03:17 -0400 |
commit | 3395f6e9cf48469d7ee05703cad1502002741c16 (patch) | |
tree | ca07b726dde7d42e113e9105e3c10f7ae9b1cb3a /drivers/net/wireless/iwlwifi/iwl-debugfs.c | |
parent | ab53d8af6772b22d4d68b1bcd74f7a5dba693983 (diff) |
iwlwifi: rename iwl-4965-io.h to iwl-io.h
This patch renames iwl-4965-io.h back to iw-io.h
it also remove 4965 from all functions it supplies
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@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 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-debugfs.c b/drivers/net/wireless/iwlwifi/iwl-debugfs.c index c659bd3bc346..b2cc552de738 100644 --- a/drivers/net/wireless/iwlwifi/iwl-debugfs.c +++ b/drivers/net/wireless/iwlwifi/iwl-debugfs.c | |||
@@ -36,7 +36,7 @@ | |||
36 | 36 | ||
37 | #include "iwl-4965.h" | 37 | #include "iwl-4965.h" |
38 | #include "iwl-debug.h" | 38 | #include "iwl-debug.h" |
39 | #include "iwl-4965-io.h" | 39 | #include "iwl-io.h" |
40 | 40 | ||
41 | 41 | ||
42 | /* create and remove of files */ | 42 | /* create and remove of files */ |
@@ -141,9 +141,9 @@ static ssize_t iwl_dbgfs_sram_read(struct file *file, | |||
141 | printk(KERN_DEBUG "offset is: 0x%x\tlen is: 0x%x\n", | 141 | printk(KERN_DEBUG "offset is: 0x%x\tlen is: 0x%x\n", |
142 | priv->dbgfs->sram_offset, priv->dbgfs->sram_len); | 142 | priv->dbgfs->sram_offset, priv->dbgfs->sram_len); |
143 | 143 | ||
144 | iwl4965_grab_nic_access(priv); | 144 | iwl_grab_nic_access(priv); |
145 | for (i = priv->dbgfs->sram_len; i > 0; i -= 4) { | 145 | for (i = priv->dbgfs->sram_len; i > 0; i -= 4) { |
146 | val = iwl4965_read_targ_mem(priv, priv->dbgfs->sram_offset + \ | 146 | val = iwl_read_targ_mem(priv, priv->dbgfs->sram_offset + \ |
147 | priv->dbgfs->sram_len - i); | 147 | priv->dbgfs->sram_len - i); |
148 | if (i < 4) { | 148 | if (i < 4) { |
149 | switch (i) { | 149 | switch (i) { |
@@ -161,7 +161,7 @@ static ssize_t iwl_dbgfs_sram_read(struct file *file, | |||
161 | pos += sprintf(buf+pos, "0x%08x ", val); | 161 | pos += sprintf(buf+pos, "0x%08x ", val); |
162 | } | 162 | } |
163 | pos += sprintf(buf+pos, "\n"); | 163 | pos += sprintf(buf+pos, "\n"); |
164 | iwl4965_release_nic_access(priv); | 164 | iwl_release_nic_access(priv); |
165 | 165 | ||
166 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); | 166 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
167 | return ret; | 167 | return ret; |