diff options
author | Seokmann Ju <seokmann.ju@qlogic.com> | 2008-04-24 18:21:29 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-04-27 13:19:59 -0400 |
commit | c6852c4c5984fff130a859792d4b26d30c85c54b (patch) | |
tree | 2dee2906fa8cd693a391903b96cafa544340b157 /drivers/scsi/qla2xxx/qla_init.c | |
parent | 3b8117b837f5768f46e9a876a58de11606f63483 (diff) |
[SCSI] qla2xxx: Correct misc. endian and byte-ordering issues.
There were several places in the driver which could cause byte
ordering problem as provided by Al Viro
<viro@ZenIV.linux.org.uk>.
Signed-off-by: Seokmann Ju <seokmann.ju@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_init.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 01e26087c1dd..bbbc5a632a1d 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
@@ -3645,7 +3645,7 @@ qla24xx_nvram_config(scsi_qla_host_t *ha) | |||
3645 | if (le16_to_cpu(nv->login_timeout) < 4) | 3645 | if (le16_to_cpu(nv->login_timeout) < 4) |
3646 | nv->login_timeout = __constant_cpu_to_le16(4); | 3646 | nv->login_timeout = __constant_cpu_to_le16(4); |
3647 | ha->login_timeout = le16_to_cpu(nv->login_timeout); | 3647 | ha->login_timeout = le16_to_cpu(nv->login_timeout); |
3648 | icb->login_timeout = cpu_to_le16(nv->login_timeout); | 3648 | icb->login_timeout = nv->login_timeout; |
3649 | 3649 | ||
3650 | /* Set minimum RATOV to 100 tenths of a second. */ | 3650 | /* Set minimum RATOV to 100 tenths of a second. */ |
3651 | ha->r_a_tov = 100; | 3651 | ha->r_a_tov = 100; |