summaryrefslogtreecommitdiffstats
path: root/sys/dev/isa/if_ec.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make room for media types of the future. Extend the ifmedia word to 64 bits.stsp2015-09-111-3/+3
| | | | | | | | | | | | | | | | This changes numbers of the SIOCSIFMEDIA and SIOCGIFMEDIA ioctls and grows struct ifmediareq. Old ifconfig and dhclient binaries can still assign addresses, however the 'media' subcommand stops working. Recompiling ifconfig and dhclient with new headers before a reboot should not be necessary unless in very special circumstances where non-default media settings must be used to get link and console access is not available. There may be some MD fallout but that will be cleared up later. ok deraadt miod with help and suggestions from several sharks attending l2k15
* Fewer <netinet/in_systm.h>mpi2014-08-111-5/+1
|
* Most network drivers include netinet/in_var.h, but apparently theybluhm2013-08-071-2/+1
| | | | | don't have to. Just remove these include lines. Compiled on amd64 i386 sparc64; OK henning@ mikeb@
* First pass at removing clauses 3 and 4 from NetBSD licenses.ray2008-06-261-8/+1
| | | | | | | | | Not sure what's more surprising: how long it took for NetBSD to catch up to the rest of the BSDs (including UCB), or the amount of code that NetBSD has claimed for itself without attributing to the actual authors. OK deraadt@
* remove some NetBSD code.brad2006-10-201-13/+1
|
* ansibrad2006-10-201-40/+15
|
* fix dmesg line wrapping; this was fallout from shortening the ne(4) dmesgbrad2006-10-011-3/+3
| | | | | | printing. reported/tested by and okay nick@
* Do not redefine ALIGNED_POINTER, it comes from <machine/param.h>miod2006-07-291-7/+1
|
* remove netns crud.henning2005-06-081-6/+1
| | | | | some drivers actually had hooks for SIOCSIFADDR, most just useless includes "looks good" deraadt miod brad
* network drivers don't need to include bpfdesc.htedu2004-05-121-2/+1
| | | | ok krw@ canacar@
* First round of __P removal in sysmillert2002-03-141-14/+14
|
* Adjust the way that media is initialized on DP8390-compatibles; from NetBSD.aaron2001-03-121-9/+15
| | | | | The dp8390_softc now has media_init and media_fini function pointers that do the work. fgsch@ ok
* Use swap16 not bswap16 in OpenBSDniklas1998-10-041-2/+2
|
* Replace the ed driver.fgsch1998-09-221-0/+819
ec is used for 3c503 cards, we for SMC/WD 80x3 series and ne for ne[12]00. This also adds ne2k pnp support.