You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[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>
This commit is contained in:
@@ -1657,9 +1657,10 @@ static int __devinit fs_init (struct fs_dev *dev)
|
||||
func_enter ();
|
||||
pci_dev = dev->pci_dev;
|
||||
|
||||
printk (KERN_INFO "found a FireStream %d card, base %08lx, irq%d.\n",
|
||||
printk (KERN_INFO "found a FireStream %d card, base %16llx, irq%d.\n",
|
||||
IS_FS50(dev)?50:155,
|
||||
pci_resource_start(pci_dev, 0), dev->pci_dev->irq);
|
||||
(unsigned long long)pci_resource_start(pci_dev, 0),
|
||||
dev->pci_dev->irq);
|
||||
|
||||
if (fs_debug & FS_DEBUG_INIT)
|
||||
my_hd ((unsigned char *) dev, sizeof (*dev));
|
||||
|
||||
Reference in New Issue
Block a user