diff options
author | wpaul <wpaul@FreeBSD.org> | 2000-01-08 06:52:36 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 2000-01-08 06:52:36 +0000 |
commit | f6a93da1850e933da3ce0de161d20adb0d5885f3 (patch) | |
tree | ec9d22e814468aa7628a2221c6771e6b2cb237f8 /sys/dev/usb/if_auereg.h | |
parent | f3c1b82030b5c50bbac66d69f9822a85b5dea931 (diff) | |
download | FreeBSD-src-f6a93da1850e933da3ce0de161d20adb0d5885f3.zip FreeBSD-src-f6a93da1850e933da3ce0de161d20adb0d5885f3.tar.gz |
Be a bit more discriminating when trying to decide when to screen out
certain PHY addresses in aue_miibus_readreg(). Not all adapters based
on the Pegasus chip may have their PHYs wired for the same MII bus
addresses: the logic that I used for my ADMtek eval board might not
apply to other adapters, so make sure to only use it if this is really
an ADMtek eval board (check the vendor/device ID).
This will hopefully make the LinkSys USB100TX adapter work correctly.
Diffstat (limited to 'sys/dev/usb/if_auereg.h')
-rw-r--r-- | sys/dev/usb/if_auereg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/usb/if_auereg.h b/sys/dev/usb/if_auereg.h index 2bbe567..d804705 100644 --- a/sys/dev/usb/if_auereg.h +++ b/sys/dev/usb/if_auereg.h @@ -237,6 +237,7 @@ struct aue_softc { device_t aue_miibus; usbd_device_handle aue_udev; usbd_interface_handle aue_iface; + struct aue_type *aue_info; int aue_ed[AUE_ENDPT_MAX]; usbd_pipe_handle aue_ep[AUE_ENDPT_MAX]; int aue_unit; |