Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3b2d871245357015cac621d7612b6ecf59f424df
Commit:     3b2d871245357015cac621d7612b6ecf59f424df
Parent:     dbeeb816e805091e7cfc03baf36dc40b4adb2bbd
Author:     Stephen Rothwell <[EMAIL PROTECTED]>
AuthorDate: Thu Nov 1 17:32:21 2007 +1100
Committer:  James <[EMAIL PROTECTED]>
CommitDate: Wed Nov 7 08:12:02 2007 -0800

    [SCSI] aacraid: don't assign cpu_to_le32(constant) to u8
    
    Noticed on PowerPC allmod config build:
    
    drivers/scsi/aacraid/commsup.c:1342: warning: large integer implicitly 
truncated to unsigned type
    drivers/scsi/aacraid/commsup.c:1343: warning: large integer implicitly 
truncated to unsigned type
    drivers/scsi/aacraid/commsup.c:1344: warning: large integer implicitly 
truncated to unsigned type
    
    Also fix some whitespace on the changed lines.
    
    Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]>
    Acked-by: Mark Salyzyn <[EMAIL PROTECTED]>
    Signed-off-by: James <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/aacraid/commsup.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/scsi/aacraid/commsup.c b/drivers/scsi/aacraid/commsup.c
index 240a0bb..3c2dbc0 100644
--- a/drivers/scsi/aacraid/commsup.c
+++ b/drivers/scsi/aacraid/commsup.c
@@ -1339,9 +1339,9 @@ int aac_check_health(struct aac_dev * aac)
                        aif = (struct aac_aifcmd *)hw_fib->data;
                        aif->command = cpu_to_le32(AifCmdEventNotify);
                        aif->seqnum = cpu_to_le32(0xFFFFFFFF);
-                       aif->data[0] = cpu_to_le32(AifEnExpEvent);
-                       aif->data[1] = cpu_to_le32(AifExeFirmwarePanic);
-                       aif->data[2] = cpu_to_le32(AifHighPriority);
+                       aif->data[0] = AifEnExpEvent;
+                       aif->data[1] = AifExeFirmwarePanic;
+                       aif->data[2] = AifHighPriority;
                        aif->data[3] = cpu_to_le32(BlinkLED);
 
                        /*
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to