mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
GCC4.6: Squash warnings in sata_sil3114.c
sata_sil3114.c: In function 'sata_identify': sata_sil3114.c:174: warning: format '%x' expects type 'unsigned int', but argument 2 has type 'lbaint_t' Signed-off-by: Marek Vasut <marek.vasut@gmail.com> Cc: Wolfgang Denk <wd@denx.de> Cc: Simon Glass <sjg@chromium.org> Cc: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
d015df8fb1
commit
5779a9e2c3
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ static void sata_identify (int num, int dev)
|
|||
sata_dev_desc[devno].removable = 0;
|
||||
|
||||
sata_dev_desc[devno].lba = (u32) n_sectors;
|
||||
debug ("lba=0x%x\n", sata_dev_desc[devno].lba);
|
||||
debug("lba=0x%lx\n", sata_dev_desc[devno].lba);
|
||||
|
||||
#ifdef CONFIG_LBA48
|
||||
if (iobuf[83] & (1 << 10)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue