diff options
| author | xtraeme <xtraeme@NetBSD.org> | 2008-05-04 17:06:09 +0000 |
|---|---|---|
| committer | xtraeme <xtraeme@NetBSD.org> | 2008-05-04 17:06:09 +0000 |
| commit | 7db0e57765c5442d9c413d18d63f4c38df9fc014 (patch) | |
| tree | 4c66c2f55ecdc8abb402406cd5fe08edfa244b41 /sys/dev/ic | |
| parent | 7f44567d7cbafd4e461583e15f0b2567765e42f2 (diff) | |
device_t/softc split for all mii(4) devices, and other related
cosmetic changes.
Diffstat (limited to 'sys/dev/ic')
| -rw-r--r-- | sys/dev/ic/hme.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/hme.c b/sys/dev/ic/hme.c index 072de978c7d..513009435bb 100644 --- a/sys/dev/ic/hme.c +++ b/sys/dev/ic/hme.c @@ -1,4 +1,4 @@ -/* $NetBSD: hme.c,v 1.65 2008/04/28 20:23:49 martin Exp $ */ +/* $NetBSD: hme.c,v 1.66 2008/05/04 17:06:09 xtraeme Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -34,7 +34,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: hme.c,v 1.65 2008/04/28 20:23:49 martin Exp $"); +__KERNEL_RCSID(0, "$NetBSD: hme.c,v 1.66 2008/05/04 17:06:09 xtraeme Exp $"); /* #define HMEDEBUG */ @@ -285,7 +285,7 @@ hme_config(sc) if (child->mii_phy > 1 || child->mii_inst > 1) { aprint_error_dev(&sc->sc_dev, "cannot accommodate MII device %s" " at phy %d, instance %d\n", - device_xname(&child->mii_dev), + device_xname(child->mii_dev), child->mii_phy, child->mii_inst); continue; } |
