mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[SCSI] aacraid: fix up le32 issues in BlinkLED
Signed-off-by: Mark Salyzyn <aacraid@adaptec.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
parent
e85fbc595a
commit
e6096963d2
1 changed files with 1 additions and 1 deletions
|
@ -1342,7 +1342,7 @@ int aac_check_health(struct aac_dev * aac)
|
|||
aif->data[0] = AifEnExpEvent;
|
||||
aif->data[1] = AifExeFirmwarePanic;
|
||||
aif->data[2] = AifHighPriority;
|
||||
aif->data[3] = cpu_to_le32(BlinkLED);
|
||||
aif->data[3] = BlinkLED;
|
||||
|
||||
/*
|
||||
* Put the FIB onto the
|
||||
|
|
Loading…
Reference in a new issue