diff options
author | Jing Huang <huangj@brocade.com> | 2010-10-18 20:10:50 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-10-25 17:17:14 -0400 |
commit | ba816ea8e2eacbf3d198ad1859f413c2d6213434 (patch) | |
tree | 92399b02434b350fe4c767c0cb4f1790b7fee763 /drivers/scsi/bfa/bfa_port.c | |
parent | 6a18b1675fdf08a6dc861e39c3f94309a03e7f16 (diff) |
[SCSI] bfa: replace endian swap macros with the ones provided by linux
Signed-off-by: Jing Huang <huangj@brocade.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/bfa/bfa_port.c')
-rw-r--r-- | drivers/scsi/bfa/bfa_port.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/bfa/bfa_port.c b/drivers/scsi/bfa/bfa_port.c index b6d170a13be..17834ff1173 100644 --- a/drivers/scsi/bfa/bfa_port.c +++ b/drivers/scsi/bfa/bfa_port.c | |||
@@ -37,11 +37,11 @@ bfa_port_stats_swap(struct bfa_port_s *port, union bfa_port_stats_u *stats) | |||
37 | t0 = dip[i]; | 37 | t0 = dip[i]; |
38 | t1 = dip[i + 1]; | 38 | t1 = dip[i + 1]; |
39 | #ifdef __BIGENDIAN | 39 | #ifdef __BIGENDIAN |
40 | dip[i] = bfa_os_ntohl(t0); | 40 | dip[i] = be32_to_cpu(t0); |
41 | dip[i + 1] = bfa_os_ntohl(t1); | 41 | dip[i + 1] = be32_to_cpu(t1); |
42 | #else | 42 | #else |
43 | dip[i] = bfa_os_ntohl(t1); | 43 | dip[i] = be32_to_cpu(t1); |
44 | dip[i + 1] = bfa_os_ntohl(t0); | 44 | dip[i + 1] = be32_to_cpu(t0); |
45 | #endif | 45 | #endif |
46 | } | 46 | } |
47 | } | 47 | } |