diff options
author | Mats O Jansson <maja@cvs.openbsd.org> | 2006-02-12 00:13:02 +0000 |
---|---|---|
committer | Mats O Jansson <maja@cvs.openbsd.org> | 2006-02-12 00:13:02 +0000 |
commit | 252a08c42dc2068e748e39525366691261aa927a (patch) | |
tree | 975dee068656acff697a528784104bbf80b232b1 /sys | |
parent | 8398fd6aa4e00885ba86d3406b47dc5018424945 (diff) |
Correct information in dmesg again. -moj ok jsg
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/mii/ukphy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/ukphy.c b/sys/dev/mii/ukphy.c index 36e386ad18a..bd065bf58ae 100644 --- a/sys/dev/mii/ukphy.c +++ b/sys/dev/mii/ukphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ukphy.c,v 1.16 2005/10/16 22:50:34 brad Exp $ */ +/* $OpenBSD: ukphy.c,v 1.17 2006/02/12 00:13:01 maja Exp $ */ /* $NetBSD: ukphy.c,v 1.9 2000/02/02 23:34:57 thorpej Exp $ */ /*- @@ -121,7 +121,7 @@ ukphyattach(struct device *parent, struct device *self, void *aux) printf(": Generic IEEE 802.3u media interface, rev. %d:", MII_REV(ma->mii_id2)); - printf(" OUI 0x%06x, model 0x%04x\n", MII_REV(ma->mii_id2), + printf(" OUI 0x%06x, model 0x%04x\n", MII_OUI(ma->mii_id1, ma->mii_id2), MII_MODEL(ma->mii_id2)); sc->mii_inst = mii->mii_instance; |