NetBSD/sys/arch/next68k/dev
dyoung dcd8923429 Change a bazillion occurrences of code resembling this,
error = (cmd == SIOCADDMULTI) ?
	    ether_addmulti(ifr, &sc->sc_ec) :
	    ether_delmulti(ifr, &sc->sc_ec);

	if (error == ENETRESET) {

to this,

	if ((error = ether_ioctl(ifp, cmd, data)) == ENETRESET) {

which does the same thing.

(A bazillion is a very large number.  This seems to make the i386
ALL kernel smaller by 3kB to 4kB.)

Use ifreq_getaddr() twice in es(4).

Whitespace nits.
2007-09-01 07:32:22 +00:00
..
bmapreg.h
clockreg.h
enreg.h
esp.c Fix caddr_t fallout. Well, this driver is too ugly to read... 2007-03-05 15:05:24 +00:00
espreg.h
espvar.h Fix caddr_t fallout. Well, this driver is too ugly to read... 2007-03-05 15:05:24 +00:00
if_xe.c merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
if_xereg.h
if_xevar.h
intio.c merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
intiovar.h Kill caddr_t; there will be some MI fallout, but it will be fixed shortly. 2007-03-04 05:59:00 +00:00
mb8795.c Change a bazillion occurrences of code resembling this, 2007-09-01 07:32:22 +00:00
mb8795reg.h
mb8795var.h Kill caddr_t; there will be some MI fallout, but it will be fixed shortly. 2007-03-04 05:59:00 +00:00
nextcons.c Remove duplicate #includes, patch contributed in private mail 2007-01-24 13:08:11 +00:00
nextdisplay.c Kill caddr_t; there will be some MI fallout, but it will be fixed shortly. 2007-03-04 05:59:00 +00:00
nextdisplayvar.h merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
nextdma.c integrate kauth. 2006-05-14 21:55:09 +00:00
nextdmareg.h
nextdmavar.h merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
nextkbd.c Kill caddr_t; there will be some MI fallout, but it will be fixed shortly. 2007-03-04 05:59:00 +00:00
nextkbdvar.h merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
wskbdmap_next.c merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
wskbdmap_next.h
zs_cons.h merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
zs_kgdb.c Fix a warning from gcc 4 about stripping the volatile qualifier by a cast 2007-06-23 15:32:56 +00:00
zs.c MI softintr(9)'fy. Tested by bouyer@. 2007-03-08 16:37:43 +00:00