Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc5d431c authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6655: mac80211 conversion: device_print_info remove netdevice.



use dev_info for device name and pcid->irq for irq number.

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 000fe0f5
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -809,12 +809,11 @@ static const struct net_device_ops device_netdev_ops = {

static void device_print_info(struct vnt_private *pDevice)
{
	struct net_device *dev = pDevice->dev;
	dev_info(&pDevice->pcid->dev, "%s\n", get_chip_name(pDevice->chip_id));

	pr_info("%s: %s\n", dev->name, get_chip_name(pDevice->chip_id));
	pr_info("%s: MAC=%pM IO=0x%lx Mem=0x%lx IRQ=%d\n",
		dev->name, dev->dev_addr, (unsigned long)pDevice->ioaddr,
		(unsigned long)pDevice->PortOffset, pDevice->dev->irq);
	dev_info(&pDevice->pcid->dev, "MAC=%pM IO=0x%lx Mem=0x%lx IRQ=%d\n",
		 pDevice->abyCurrentNetAddr, (unsigned long)pDevice->ioaddr,
		 (unsigned long)pDevice->PortOffset, pDevice->pcid->irq);
}

static void vt6655_init_info(struct pci_dev *pcid,