aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/hp
diff options
context:
space:
mode:
authorMihir Singh <me@mihirsingh.com>2013-09-21 18:48:09 +0000
committerDavid S. Miller <davem@davemloft.net>2013-09-27 17:38:32 -0400
commit307fc4d727a795f720a8c529223dcda9729fc402 (patch)
tree8f6eb15558b52f824c519b31bd25c41ac62663ee /drivers/net/ethernet/hp
parentipv6: compare sernum when walking fib for /proc/net/ipv6_route as safety net (diff)
downloadlinux-dev-307fc4d727a795f720a8c529223dcda9729fc402.tar.xz
linux-dev-307fc4d727a795f720a8c529223dcda9729fc402.zip
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: Mihir Singh <me@mihirsingh.com> Reviewed-By: Matthew Whitehead <tedheadster@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/hp')
-rw-r--r--drivers/net/ethernet/hp/hp100.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/hp/hp100.c b/drivers/net/ethernet/hp/hp100.c
index 91227d03274e..37860096f744 100644
--- a/drivers/net/ethernet/hp/hp100.c
+++ b/drivers/net/ethernet/hp/hp100.c
@@ -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;
}