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>

authored by Al Viro and committed by Linus Torvalds 2832e856 22bb3e9e

+2 -2
+2 -2
drivers/net/ax88796.c
··· 459 459 struct ei_device *ei_local = netdev_priv(dev); 460 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 464 ret = request_irq(dev->irq, ax_ei_interrupt, 0, dev->name, dev); 465 465 if (ret) ··· 492 492 struct ax_device *ax = to_ax_dev(dev); 493 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 497 /* turn the phy off */ 498 498