mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 15:11:50 +00:00
[PATCH] Print physical address in tulip_init_one
As the cookie returned by pci_iomap() is fairly useless... [Compile warning on pci_resource_start() format fixed up by Valerie Henson.] Signed-off-by: Grant Grundler <grundler@parisc-linux.org> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org> Signed-off-by: Valerie Henson <val_henson@linux.intel.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
6b92801b43
commit
c69f412219
@ -1644,8 +1644,14 @@ static int __devinit tulip_init_one (struct pci_dev *pdev,
|
||||
if (register_netdev(dev))
|
||||
goto err_out_free_ring;
|
||||
|
||||
printk(KERN_INFO "%s: %s rev %d at %p,",
|
||||
dev->name, chip_name, chip_rev, ioaddr);
|
||||
printk(KERN_INFO "%s: %s rev %d at "
|
||||
#ifdef CONFIG_TULIP_MMIO
|
||||
"MMIO"
|
||||
#else
|
||||
"Port"
|
||||
#endif
|
||||
" %#llx,", dev->name, chip_name, chip_rev,
|
||||
(unsigned long long) pci_resource_start(pdev, TULIP_BAR));
|
||||
pci_set_drvdata(pdev, dev);
|
||||
|
||||
if (eeprom_missing)
|
||||
|
Loading…
Reference in New Issue
Block a user