mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
[SCSI] qla2xxx: Correct endianess comparisons during ISP24xx NVRAM configuration.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
ffb39f0324
commit
fd0e7e4dd5
@ -3371,7 +3371,7 @@ qla24xx_nvram_config(scsi_qla_host_t *ha)
|
||||
strcpy(ha->model_number, "QLA2462");
|
||||
|
||||
/* Prepare nodename */
|
||||
if ((icb->firmware_options_1 & BIT_14) == 0) {
|
||||
if ((icb->firmware_options_1 & __constant_cpu_to_le32(BIT_14)) == 0) {
|
||||
/*
|
||||
* Firmware will apply the following mask if the nodename was
|
||||
* not provided.
|
||||
@ -3387,8 +3387,8 @@ qla24xx_nvram_config(scsi_qla_host_t *ha)
|
||||
ha->flags.enable_target_reset = 1;
|
||||
ha->flags.enable_led_scheme = 0;
|
||||
|
||||
ha->operating_mode =
|
||||
(icb->firmware_options_2 & (BIT_6 | BIT_5 | BIT_4)) >> 4;
|
||||
ha->operating_mode = (le32_to_cpu(icb->firmware_options_2) &
|
||||
(BIT_6 | BIT_5 | BIT_4)) >> 4;
|
||||
|
||||
memcpy(ha->fw_seriallink_options24, nv->seriallink_options,
|
||||
sizeof(ha->fw_seriallink_options24));
|
||||
|
Loading…
Reference in New Issue
Block a user