lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <AE4F746F2AECFC4DA4AADD66A1DFEF01F956F5@otce2k301.adaptec.com> Date: Wed, 31 Oct 2007 09:53:42 -0400 From: "Salyzyn, Mark" <mark_salyzyn@...ptec.com> To: "Stephen Rothwell" <sfr@...b.auug.org.au> Cc: <linux-scsi@...r.kernel.org>, "LKML" <linux-kernel@...r.kernel.org> Subject: RE: [PATCH] aacraid: don't assign cpu_to_le32(constant) to u8 ACK Sincerely -- Mark Salyzyn > -----Original Message----- > From: Stephen Rothwell [mailto:sfr@...b.auug.org.au] > Sent: Wednesday, October 31, 2007 12:02 AM > To: AACRAID > Cc: linux-scsi@...r.kernel.org; LKML > Subject: [PATCH] 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 > > Signed-off-by: Stephen Rothwell <sfr@...b.auug.org.au> > --- > drivers/scsi/aacraid/commsup.c | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > -- > Cheers, > Stephen Rothwell sfr@...b.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 > - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists