[PATCH] aacraid: don't assign cpu_to_le32(constant) to u8

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <aacraid@...>
Cc: <linux-scsi@...>, LKML <linux-kernel@...>
Date: Wednesday, October 31, 2007 - 12:02 am

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

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 drivers/scsi/aacraid/commsup.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

diff --git a/drivers/scsi/aacraid/commsup.c b/drivers/scsi/aacraid/commsup.c
index 240a0bb..b9682a8 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);
 
 			/*
-- 
1.5.3.4

-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] aacraid: don't assign cpu_to_le32(constant) to u8, Stephen Rothwell, (Wed Oct 31, 12:02 am)
[PATCHv2] aacraid: don't assign cpu_to_le32(constant) to u8, Stephen Rothwell, (Thu Nov 1, 2:32 am)
[PATCH 1/1] aacraid: don't assign cpu_to_le32(int) to u8, Salyzyn, Mark, (Wed Nov 7, 11:58 am)
Re: [PATCH 1/1] aacraid: don't assign cpu_to_le32(int) to u8, Christoph Hellwig, (Wed Nov 7, 1:33 pm)
Re: [PATCH 1/1] aacraid: don't assign cpu_to_le32(int) to u8, Christoph Hellwig, (Thu Nov 8, 1:27 pm)