diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-15 16:00:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-15 19:40:52 -0400 |
commit | 2832e856fb7238dae0f385e309e66626d81ca0fa (patch) | |
tree | 4797bebc8aca6ad4f15898fff709053cd8373ea3 /drivers | |
parent | 22bb3e9e24e08a59efcb49943609ae88b6f628d0 (diff) |
ax88796: dev_dbg() wants device, not platform device
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ax88796.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ax88796.c b/drivers/net/ax88796.c index d19874bf0706..1d882360b34d 100644 --- a/drivers/net/ax88796.c +++ b/drivers/net/ax88796.c | |||
@@ -459,7 +459,7 @@ static int ax_open(struct net_device *dev) | |||
459 | struct ei_device *ei_local = netdev_priv(dev); | 459 | struct ei_device *ei_local = netdev_priv(dev); |
460 | int ret; | 460 | int ret; |
461 | 461 | ||
462 | dev_dbg(ax->dev, "%s: open\n", dev->name); | 462 | dev_dbg(&ax->dev->dev, "%s: open\n", dev->name); |
463 | 463 | ||
464 | ret = request_irq(dev->irq, ax_ei_interrupt, 0, dev->name, dev); | 464 | ret = request_irq(dev->irq, ax_ei_interrupt, 0, dev->name, dev); |
465 | if (ret) | 465 | if (ret) |
@@ -492,7 +492,7 @@ static int ax_close(struct net_device *dev) | |||
492 | struct ax_device *ax = to_ax_dev(dev); | 492 | struct ax_device *ax = to_ax_dev(dev); |
493 | struct ei_device *ei_local = netdev_priv(dev); | 493 | struct ei_device *ei_local = netdev_priv(dev); |
494 | 494 | ||
495 | dev_dbg(ax->dev, "%s: close\n", dev->name); | 495 | dev_dbg(&ax->dev->dev, "%s: close\n", dev->name); |
496 | 496 | ||
497 | /* turn the phy off */ | 497 | /* turn the phy off */ |
498 | 498 | ||