diff options
Diffstat (limited to 'sys/pci/if_ste.c')
-rw-r--r-- | sys/pci/if_ste.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/pci/if_ste.c b/sys/pci/if_ste.c index 73f218c..5a2a814 100644 --- a/sys/pci/if_ste.c +++ b/sys/pci/if_ste.c @@ -380,6 +380,11 @@ static int ste_miibus_readreg(dev, phy, reg) sc = device_get_softc(dev); + if (pci_get_vendor(dev) == DL_VENDORID && + pci_get_device(dev) == DL_DEVICEID_550TX && + phy != 0) + return (0); + bzero((char *)&frame, sizeof(frame)); frame.mii_phyaddr = phy; |