mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 05:34:30 +08:00
sata_sil3114: fix compiler warning
judging from other printfs in the same file, it seems ata should be postpended with the interface number, not the address of the global port variable. Fixes this for current u-boot-mpc83xx tree: Configuring for MPC8349ITX board... sata_sil3114.c: In function 'sata_bus_softreset': sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *' sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *' Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
This commit is contained in:
parent
f5675aa5ce
commit
369d0aa967
@ -96,7 +96,7 @@ static int sata_bus_softreset (int num)
|
||||
}
|
||||
|
||||
if (status & ATA_BUSY) {
|
||||
printf ("ata%u is slow to respond,plz be patient\n", port);
|
||||
printf ("ata%u is slow to respond,plz be patient\n", num);
|
||||
}
|
||||
|
||||
while ((status & ATA_BUSY)) {
|
||||
@ -105,7 +105,7 @@ static int sata_bus_softreset (int num)
|
||||
}
|
||||
|
||||
if (status & ATA_BUSY) {
|
||||
printf ("ata%u failed to respond : ", port);
|
||||
printf ("ata%u failed to respond : ", num);
|
||||
printf ("bus reset failed\n");
|
||||
port[num].dev_mask = 0;
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user