diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-12 18:20:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-27 12:23:59 -0400 |
commit | e29419fffceb8ec36def3c922040e1ca7bcd3de5 (patch) | |
tree | c4e51cdee86dec7c859b1e7c7929c8bb2e85f36d /drivers/atm/firestream.c | |
parent | 685143ac1f7a579a3fac9c7f2ac8f82e95af6864 (diff) |
[PATCH] 64bit resource: fix up printks for resources in misc drivers
This is needed if we wish to change the size of the resource structures.
Based on an original patch from Vivek Goyal <vgoyal@in.ibm.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/atm/firestream.c')
-rw-r--r-- | drivers/atm/firestream.c | 5 |
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)); |