mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
On second though, print the OUI, model and revision. This is the same
information that's in the id1 and id2 fields we were using, but is in a form that the drivers will be using in their matching routines.
This commit is contained in:
parent
d8f2dda739
commit
8e325e2991
1 changed files with 3 additions and 1 deletions
|
|
@ -202,7 +202,9 @@ miibus_child_pnpinfo_str(device_t bus, device_t child, char *buf,
|
|||
size_t buflen)
|
||||
{
|
||||
struct mii_attach_args *maa = device_get_ivars(child);
|
||||
snprintf(buf, buflen, "id1=0x%x id2=0x%x", maa->mii_id1, maa->mii_id2);
|
||||
snprintf(buf, buflen, "oui=0x%x model=0x%x rev=0x%x",
|
||||
MII_OUI(maa->mii_id1, maa->mii_id2),
|
||||
MII_MODEL(maa->mii_id2), MII_REV(maa->mii_id2));
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue