From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> powerpc: drivers/scsi/ips.c: In function 'ips_issue_copperhead': drivers/scsi/ips.c:5436: warning: large integer implicitly truncated to unsigned type it doesn't seem necessary to do outw(cpu_to_le32(...), ...) anyway. Acked-by: Mark Salyzyn <Mark_Salyzyn@xxxxxxxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxxxxxxxxxxx> Cc: FUJITA Tomonori <fujita.tomonori@xxxxxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Cc: <aacraid@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/scsi/ips.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/scsi/ips.c~ipsc-fix-build-warning drivers/scsi/ips.c --- a/drivers/scsi/ips.c~ipsc-fix-build-warning +++ a/drivers/scsi/ips.c @@ -5399,7 +5399,7 @@ ips_issue_copperhead(ips_ha_t * ha, ips_ } /* end while */ outl(cpu_to_le32(scb->scb_busaddr), ha->io_addr + IPS_REG_CCSAR); - outw(cpu_to_le32(IPS_BIT_START_CMD), ha->io_addr + IPS_REG_CCCR); + outw(cpu_to_le16(IPS_BIT_START_CMD), ha->io_addr + IPS_REG_CCCR); return (IPS_SUCCESS); } _ -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html