The patch titled
aacraid: don't assign cpu_to_le32(constant) to u8
has been removed from the -mm tree. Its filename was
aacraid-dont-assign-cpu_to_le32constant-to-u8.patch
This patch was dropped because it is obsolete
------------------------------------------------------
Subject: aacraid: don't assign cpu_to_le32(constant) to u8
From: Stephen Rothwell <[EMAIL PROTECTED]>
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: "Salyzyn, Mark" <[EMAIL PROTECTED]>
Cc: James Bottomley <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/scsi/aacraid/commsup.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff -puN
drivers/scsi/aacraid/commsup.c~aacraid-dont-assign-cpu_to_le32constant-to-u8
drivers/scsi/aacraid/commsup.c
---
a/drivers/scsi/aacraid/commsup.c~aacraid-dont-assign-cpu_to_le32constant-to-u8
+++ a/drivers/scsi/aacraid/commsup.c
@@ -1339,9 +1339,9 @@ int aac_check_health(struct aac_dev * aa
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);
/*
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
aacraid-fix-endianness-warnings.patch
aacraid-fix-endianness-warnings-checkpatch-fixes.patch
aacraid-dont-assign-cpu_to_le32constant-to-u8.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html