mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 01:04:08 +08:00
drivers/ata/libata-eh.c: fix printk warning
drivers/ata/libata-eh.c: In function `ata_port_pbar_desc': drivers/ata/libata-eh.c:215: warning: long long unsigned int format, long unsigned int arg (arg 4) Cc: Jeff Garzik <jeff@garzik.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
ce54d16163
commit
e6a73ab1c8
@ -231,7 +231,8 @@ void ata_port_pbar_desc(struct ata_port *ap, int bar, ssize_t offset,
|
||||
if (offset < 0)
|
||||
ata_port_desc(ap, "%s %s%llu@0x%llx", name, type, len, start);
|
||||
else
|
||||
ata_port_desc(ap, "%s 0x%llx", name, start + offset);
|
||||
ata_port_desc(ap, "%s 0x%llx", name,
|
||||
start + (unsigned long long)offset);
|
||||
}
|
||||
|
||||
#endif /* CONFIG_PCI */
|
||||
|
Loading…
Reference in New Issue
Block a user