diff options
| author | Stefan Roese <sr@denx.de> | 2007-11-17 07:58:25 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-11-18 01:20:41 +0100 | 
| commit | 2309c130aa4c84b91bd874a41269c923eb61b555 (patch) | |
| tree | aaebd63add5e8c75c9690edd573b8acc939e377a | |
| parent | 5947f6999aafa7c54c1390983d264a8463dfea8e (diff) | |
| download | olio-uboot-2014.01-2309c130aa4c84b91bd874a41269c923eb61b555.tar.xz olio-uboot-2014.01-2309c130aa4c84b91bd874a41269c923eb61b555.zip | |
Fix warning differ in signedness in common/cmd_scsi.c
Signed-off-by: Stefan Roese <sr@denx.de>
| -rw-r--r-- | common/cmd_scsi.c | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/common/cmd_scsi.c b/common/cmd_scsi.c index f56393107..b2d4eb635 100644 --- a/common/cmd_scsi.c +++ b/common/cmd_scsi.c @@ -129,9 +129,12 @@ void scsi_scan(int mode)  			if((modi&0x80)==0x80) /* drive is removable */  				scsi_dev_desc[scsi_max_devs].removable=TRUE;  			/* get info for this device */ -			scsi_ident_cpy(&scsi_dev_desc[scsi_max_devs].vendor[0],&tempbuff[8],8); -			scsi_ident_cpy(&scsi_dev_desc[scsi_max_devs].product[0],&tempbuff[16],16); -			scsi_ident_cpy(&scsi_dev_desc[scsi_max_devs].revision[0],&tempbuff[32],4); +			scsi_ident_cpy((unsigned char *)&scsi_dev_desc[scsi_max_devs].vendor[0], +				       &tempbuff[8], 8); +			scsi_ident_cpy((unsigned char *)&scsi_dev_desc[scsi_max_devs].product[0], +				       &tempbuff[16], 16); +			scsi_ident_cpy((unsigned char *)&scsi_dev_desc[scsi_max_devs].revision[0], +				       &tempbuff[32], 4);  			scsi_dev_desc[scsi_max_devs].target=pccb->target;  			scsi_dev_desc[scsi_max_devs].lun=pccb->lun; |