diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-08-24 09:46:03 -0400 |
---|---|---|
committer | Stanislaw Gruszka <sgruszka@redhat.com> | 2011-11-15 05:22:42 -0500 |
commit | 1c8cae575b14ffad6af9c80927a08aa783f0ed78 (patch) | |
tree | d53cb3be8c14564b31452ca427899dfb2fc91459 /drivers/net/wireless/iwlegacy/iwl-4965-ucode.c | |
parent | 138822698fc16bd4c5b509da28a9b08faac4367b (diff) |
iwlegacy: remove _il_{read,write}_direct32
Use _il_{rd,wr} instead of another name of these operations.
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Diffstat (limited to 'drivers/net/wireless/iwlegacy/iwl-4965-ucode.c')
-rw-r--r-- | drivers/net/wireless/iwlegacy/iwl-4965-ucode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlegacy/iwl-4965-ucode.c b/drivers/net/wireless/iwlegacy/iwl-4965-ucode.c index 3fa939e490cf..4f0e6fe5be50 100644 --- a/drivers/net/wireless/iwlegacy/iwl-4965-ucode.c +++ b/drivers/net/wireless/iwlegacy/iwl-4965-ucode.c | |||
@@ -63,7 +63,7 @@ il4965_verify_inst_sparse(struct il_priv *il, __le32 *image, u32 len) | |||
63 | * if IL_DL_IO is set */ | 63 | * if IL_DL_IO is set */ |
64 | il_write_direct32(il, HBUS_TARG_MEM_RADDR, | 64 | il_write_direct32(il, HBUS_TARG_MEM_RADDR, |
65 | i + IWL4965_RTC_INST_LOWER_BOUND); | 65 | i + IWL4965_RTC_INST_LOWER_BOUND); |
66 | val = _il_read_direct32(il, HBUS_TARG_MEM_RDAT); | 66 | val = _il_rd(il, HBUS_TARG_MEM_RDAT); |
67 | if (val != le32_to_cpu(*image)) { | 67 | if (val != le32_to_cpu(*image)) { |
68 | ret = -EIO; | 68 | ret = -EIO; |
69 | errcnt++; | 69 | errcnt++; |
@@ -97,7 +97,7 @@ static int il4965_verify_inst_full(struct il_priv *il, __le32 *image, | |||
97 | /* read data comes through single port, auto-incr addr */ | 97 | /* read data comes through single port, auto-incr addr */ |
98 | /* NOTE: Use the debugless read so we don't flood kernel log | 98 | /* NOTE: Use the debugless read so we don't flood kernel log |
99 | * if IL_DL_IO is set */ | 99 | * if IL_DL_IO is set */ |
100 | val = _il_read_direct32(il, HBUS_TARG_MEM_RDAT); | 100 | val = _il_rd(il, HBUS_TARG_MEM_RDAT); |
101 | if (val != le32_to_cpu(*image)) { | 101 | if (val != le32_to_cpu(*image)) { |
102 | IL_ERR("uCode INST section is invalid at " | 102 | IL_ERR("uCode INST section is invalid at " |
103 | "offset 0x%x, is 0x%x, s/b 0x%x\n", | 103 | "offset 0x%x, is 0x%x, s/b 0x%x\n", |