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

Commit 307fc4d7 authored by Mihir Singh's avatar Mihir Singh Committed by David S. Miller
Browse files

hp100: replace hardcoded name in /proc/interrupts with interface name



The /proc/interrupts file displays hp100, which is not the accepted style. Printing eth%d is more helpful.

Signed-off-by: default avatarMihir Singh <me@mihirsingh.com>
Reviewed-By: default avatarMatthew Whitehead <tedheadster@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0a67d3ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1098,7 +1098,7 @@ static int hp100_open(struct net_device *dev)
	if (request_irq(dev->irq, hp100_interrupt,
			lp->bus == HP100_BUS_PCI || lp->bus ==
			HP100_BUS_EISA ? IRQF_SHARED : 0,
			"hp100", dev)) {
			dev->name, dev)) {
		printk("hp100: %s: unable to get IRQ %d\n", dev->name, dev->irq);
		return -EAGAIN;
	}