[PATCH] 64bit resource: fix up printks for resources in networks 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:
@@ -3354,8 +3354,8 @@ static int __devinit skge_probe(struct pci_dev *pdev,
|
||||
if (err)
|
||||
goto err_out_free_irq;
|
||||
|
||||
printk(KERN_INFO PFX DRV_VERSION " addr 0x%lx irq %d chip %s rev %d\n",
|
||||
pci_resource_start(pdev, 0), pdev->irq,
|
||||
printk(KERN_INFO PFX DRV_VERSION " addr 0x%llx irq %d chip %s rev %d\n",
|
||||
(unsigned long long)pci_resource_start(pdev, 0), pdev->irq,
|
||||
skge_board_name(hw), hw->chip_rev);
|
||||
|
||||
if ((dev = skge_devinit(hw, 0, using_dac)) == NULL)
|
||||
|
Reference in New Issue
Block a user