diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-09-04 20:04:28 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2009-09-15 11:42:47 -0400 |
commit | 0e12ddf13256fdcf6bb4dcd4c6af7ae6f7e3ab71 (patch) | |
tree | 4539f5d338e54454954a1c721c47771ba9cc38ae /drivers/serial/ioc4_serial.c | |
parent | a81a8f580b6b525112aba19319dcc5dd3db4dfee (diff) |
[IA64] ioc4_serial: fix printk format warnings
drivers/serial/ioc4_serial.c:943: warning: format '%lx' expects type 'long unsigned int', but argument 2 has type 'long long unsigned int'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Pat Gefre <pfg@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'drivers/serial/ioc4_serial.c')
-rw-r--r-- | drivers/serial/ioc4_serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/ioc4_serial.c b/drivers/serial/ioc4_serial.c index 6bab63cd5b29..e5c58fe7e745 100644 --- a/drivers/serial/ioc4_serial.c +++ b/drivers/serial/ioc4_serial.c | |||
@@ -930,7 +930,7 @@ static void handle_dma_error_intr(void *arg, uint32_t other_ir) | |||
930 | 930 | ||
931 | if (readl(&port->ip_mem->pci_err_addr_l.raw) & IOC4_PCI_ERR_ADDR_VLD) { | 931 | if (readl(&port->ip_mem->pci_err_addr_l.raw) & IOC4_PCI_ERR_ADDR_VLD) { |
932 | printk(KERN_ERR | 932 | printk(KERN_ERR |
933 | "PCI error address is 0x%lx, " | 933 | "PCI error address is 0x%llx, " |
934 | "master is serial port %c %s\n", | 934 | "master is serial port %c %s\n", |
935 | (((uint64_t)readl(&port->ip_mem->pci_err_addr_h) | 935 | (((uint64_t)readl(&port->ip_mem->pci_err_addr_h) |
936 | << 32) | 936 | << 32) |