The patch titled tulip: print physical address in tulip_init_one has been added to the -mm tree. Its filename is tulip-print-physical-address-in-tulip_init_one.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: tulip: print physical address in tulip_init_one From: Grant Grundler <grundler@xxxxxxxxxxxxxxxx> 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@xxxxxxxxxxxxxxxx> Signed-off-by: Kyle McMartin <kyle@xxxxxxxxxxxxxxxx> Signed-off-by: Valerie Henson <val_henson@xxxxxxxxxxxxxxx> Signed-off-by: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/tulip/tulip_core.c | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff -puN drivers/net/tulip/tulip_core.c~tulip-print-physical-address-in-tulip_init_one drivers/net/tulip/tulip_core.c --- a/drivers/net/tulip/tulip_core.c~tulip-print-physical-address-in-tulip_init_one +++ a/drivers/net/tulip/tulip_core.c @@ -1644,8 +1644,14 @@ static int __devinit tulip_init_one (str 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) _ Patches currently in -mm which might be from grundler@xxxxxxxxxxxxxxxx are tulip-print-physical-address-in-tulip_init_one.patch tulip-flush-mmio-writes-in-reset-sequence.patch tulip-clean-up-tuliph.patch tulip-use-tuliph-in-winbond-840c.patch tulip-fix-shutdown-dma-irq-race.patch tulip-fix-for-64-bit-mips.patch tulip-natsemi-dp83840a-phy-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html