aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/smsc911x.c
diff options
context:
space:
mode:
authorSteve Glendinning <steve.glendinning@smsc.com>2009-01-11 00:14:52 -0800
committerDavid S. Miller <davem@davemloft.net>2009-01-11 00:14:52 -0800
commit08168f7164fed494852361ab900358cd7a6b95d6 (patch)
treeff45323f114d7ffb70b856aca1b6d18324fc9cb0 /drivers/net/smsc911x.c
parentsmsc911x: fix smsc911x_reg_read compiler warning (diff)
downloadlinux-dev-08168f7164fed494852361ab900358cd7a6b95d6.tar.xz
linux-dev-08168f7164fed494852361ab900358cd7a6b95d6.zip
smsc911x: register irq with device name, not driver name
This change lets "cat /proc/interrupts" show the name of the ethernet device (e.g. eth0) rather than the driver name (smsc911x). Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/smsc911x.c')
-rw-r--r--drivers/net/smsc911x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/smsc911x.c b/drivers/net/smsc911x.c
index fd3d2a7a1a24..f513bdf1c887 100644
--- a/drivers/net/smsc911x.c
+++ b/drivers/net/smsc911x.c
@@ -1969,7 +1969,7 @@ static int __devinit smsc911x_drv_probe(struct platform_device *pdev)
smsc911x_reg_write(pdata, INT_STS, 0xFFFFFFFF);
retval = request_irq(dev->irq, smsc911x_irqhandler, IRQF_DISABLED,
- SMSC_CHIPNAME, dev);
+ dev->name, dev);
if (retval) {
SMSC_WARNING(PROBE,
"Unable to claim requested irq: %d", dev->irq);