aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/atm/firestream.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/atm/firestream.c')
-rw-r--r--drivers/atm/firestream.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/atm/firestream.c b/drivers/atm/firestream.c
index f2eeaf9dc56a..e1177169d57a 100644
--- a/drivers/atm/firestream.c
+++ b/drivers/atm/firestream.c
@@ -1657,9 +1657,10 @@ static int __devinit fs_init (struct fs_dev *dev)
1657 func_enter (); 1657 func_enter ();
1658 pci_dev = dev->pci_dev; 1658 pci_dev = dev->pci_dev;
1659 1659
1660 printk (KERN_INFO "found a FireStream %d card, base %08lx, irq%d.\n", 1660 printk (KERN_INFO "found a FireStream %d card, base %16llx, irq%d.\n",
1661 IS_FS50(dev)?50:155, 1661 IS_FS50(dev)?50:155,
1662 pci_resource_start(pci_dev, 0), dev->pci_dev->irq); 1662 (unsigned long long)pci_resource_start(pci_dev, 0),
1663 dev->pci_dev->irq);
1663 1664
1664 if (fs_debug & FS_DEBUG_INIT) 1665 if (fs_debug & FS_DEBUG_INIT)
1665 my_hd ((unsigned char *) dev, sizeof (*dev)); 1666 my_hd ((unsigned char *) dev, sizeof (*dev));