summaryrefslogtreecommitdiffstats
path: root/sys/dev/mii/etphy.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
| | | | | | | have any direct symbols used. Tested for indirect use by compiling amd64/i386/sparc64 kernels. ok tedu@ deraadt@
* Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.mpi2014-12-051-1/+2
| | | | ok mikeb@, krw@, bluhm@, tedu@
* mii drivers no longer need activate functions. Repair of the PHYderaadt2013-12-281-2/+2
| | | | | | | configuration setting is done at resume time because all networks drivers which were previously up, do an IFF_UP operation which hits PHY_RESET. This was in snapshots for about 2 weeks.
* Return right away for unknown media types instead of fallingbrad2008-04-021-2/+2
| | | | | | through and setting the half duplex flag. ok jsg@
* Add some defines and remove some of the magic numbers from the code.brad2008-04-011-6/+19
| | | | | | From DragonFly ok jsg@
* Set half duplex flag when appropriate and some minor cleaning.brad2007-11-251-8/+6
| | | | ok jsg@ dlg@
* Initial port of Sepherosa Ziehau's DragonFlyBSD driversjsg2007-10-301-0/+332
for Agere/LSI ET1310 Ethernet devices and ET1011 'TruePHY'. All the gross register related bit macros are not yet removed. Currently only Tx seems to work. Putting this in the tree in case someone else wants to look at it while I deal with exams for the next few weeks.