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/iwl3945-base.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/iwl3945-base.c')
-rw-r--r-- | drivers/net/wireless/iwlegacy/iwl3945-base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlegacy/iwl3945-base.c b/drivers/net/wireless/iwlegacy/iwl3945-base.c index def314073ce8..d45e9f532dcc 100644 --- a/drivers/net/wireless/iwlegacy/iwl3945-base.c +++ b/drivers/net/wireless/iwlegacy/iwl3945-base.c | |||
@@ -1706,7 +1706,7 @@ static int il3945_verify_inst_full(struct il_priv *il, __le32 *image, u32 len) | |||
1706 | /* read data comes through single port, auto-incr addr */ | 1706 | /* read data comes through single port, auto-incr addr */ |
1707 | /* NOTE: Use the debugless read so we don't flood kernel log | 1707 | /* NOTE: Use the debugless read so we don't flood kernel log |
1708 | * if IL_DL_IO is set */ | 1708 | * if IL_DL_IO is set */ |
1709 | val = _il_read_direct32(il, HBUS_TARG_MEM_RDAT); | 1709 | val = _il_rd(il, HBUS_TARG_MEM_RDAT); |
1710 | if (val != le32_to_cpu(*image)) { | 1710 | if (val != le32_to_cpu(*image)) { |
1711 | IL_ERR("uCode INST section is invalid at " | 1711 | IL_ERR("uCode INST section is invalid at " |
1712 | "offset 0x%x, is 0x%x, s/b 0x%x\n", | 1712 | "offset 0x%x, is 0x%x, s/b 0x%x\n", |
@@ -1747,7 +1747,7 @@ static int il3945_verify_inst_sparse(struct il_priv *il, __le32 *image, u32 len) | |||
1747 | * if IL_DL_IO is set */ | 1747 | * if IL_DL_IO is set */ |
1748 | il_write_direct32(il, HBUS_TARG_MEM_RADDR, | 1748 | il_write_direct32(il, HBUS_TARG_MEM_RADDR, |
1749 | i + IWL39_RTC_INST_LOWER_BOUND); | 1749 | i + IWL39_RTC_INST_LOWER_BOUND); |
1750 | val = _il_read_direct32(il, HBUS_TARG_MEM_RDAT); | 1750 | val = _il_rd(il, HBUS_TARG_MEM_RDAT); |
1751 | if (val != le32_to_cpu(*image)) { | 1751 | if (val != le32_to_cpu(*image)) { |
1752 | #if 0 /* Enable this if you want to see details */ | 1752 | #if 0 /* Enable this if you want to see details */ |
1753 | IL_ERR("uCode INST section is invalid at " | 1753 | IL_ERR("uCode INST section is invalid at " |