aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/mii/Makefile
diff options
context:
space:
mode:
authorBill Paul <wpaul@FreeBSD.org>2000-04-22 02:16:41 +0000
committerBill Paul <wpaul@FreeBSD.org>2000-04-22 02:16:41 +0000
commitbd80fa2c7fd57a25f122d5b781278a104af97273 (patch)
tree151bef537aa45114da5cb5094230699fe3fa975c /sys/modules/mii/Makefile
parentc0d7d4d45b17232f261e54a067cabcb080591135 (diff)
downloadsrc-bd80fa2c7fd57a25f122d5b781278a104af97273.tar.gz
src-bd80fa2c7fd57a25f122d5b781278a104af97273.zip
Reoganize/update the SysKonnect driver:
- Break out the support for the XMAC II's PHY into an miibus driver. - Reorganize the probe/attach stuff using newbus. Each XMAC is now attached to the parent GEnesis controller using newbus. This is necessary since each XMAC must also have an attached miibus, and the miibus read/write register routines need to be able to get at the softc struct for each XMAC, not the one for the parent controller. This allows me to get rid of the grotty code I added for selecting the unit numbers for the ifnet interfaces: the unit numbers are now derived from the newbus-assigned unit numbers, which should track with the ifnet interface numbers. I think. At the very least, there should never be any collisions. - Add support for the SK-9821 and SK-9822 1000baseTX adapters. Special thanks to SysKonnect for loaning me two adapters for testing.
Notes
Notes: svn path=/head/; revision=59478
Diffstat (limited to 'sys/modules/mii/Makefile')
-rw-r--r--sys/modules/mii/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/modules/mii/Makefile b/sys/modules/mii/Makefile
index b35455f71192..73fcdacb07c0 100644
--- a/sys/modules/mii/Makefile
+++ b/sys/modules/mii/Makefile
@@ -5,5 +5,6 @@ KMOD = miibus
SRCS = mii.c mii_physubr.c ukphy.c ukphy_subr.c bus_if.h pci_if.h
SRCS += miibus_if.h device_if.h miibus_if.c exphy.c nsphy.c
SRCS += mlphy.c tlphy.c rlphy.c amphy.c dcphy.c pnphy.c
+SRCS += brgphy.c xmphy.c
.include <bsd.kmod.mk>