summaryrefslogtreecommitdiff
path: root/sys/arch/mac68k/dev/if_ae.c
AgeCommit message (Collapse)Author
2003-03-12backout the two previous patches, it breaks the 3com ae card and I don'tJason Wright
understand it enough to fix.
2003-01-28Remove (now) bogus diagnostic check and set the output length correctly (why ↵Jason Wright
this was done in -two- places is beyone me); spotted and tested by Nick.
2003-01-27padd < mimimum sized frames with 0's instead of whatever the chip wants; ↵Jason Wright
based on netbsd.
2002-03-14First round of __P removal in sysTodd C. Miller
2001-09-20occured->occurredMike Pechkin
idea from deraadt@ via NetBSD millert@ ok
2001-07-09Trivial ether_input_mbuf().Federico G. Schwindt
2001-02-20for ethernet ifaces attach bpf from ether_ifattach; jason@, aaron@, itojun@ okMichael Shalayeff
1999-05-13Compensate for the check for onwership of unicast packets in promiscuousJason Wright
mode being moved to if_ether.c. This is the last of the drivers hopefully.
1997-04-25Cool. Drop oversized packets rather than splitting into mbufs. NetBSD log:gene
>From Mycroft: If we fail to allocate a cluster to hold a large packet, >simply drop it rather than using a chain of tiny mbufs.
1997-04-17Changes earmarked 'purely cosmetic' by Scott Reynolds:gene
>- Remove unused `register' modifier on declarations >- Reverse the sense of some tests to make the code more clear >- Type casts per KNF >- Move a static variable into the only function that uses it > (perhaps we can eliminate it entirely, someday?) Also, I went through these files and XXX'ed some things that should be and fixed a few more formatting problems per KNF.
1997-03-25From scottr@netbsd.org:briggs
Several more changes to move us toward MI-ness: - Use more consistent and portable types in the softc. - Map registers using an array of bus_size_t offsets, and set up the mapping in the attach code (thanks to Jason Thorpe for suggesting this!). - Disable the ae-specific watchdog, which is no longer necessary in the general case. Still remaining: split out functions used to copy data to/from the card, and retain a way to have a local driver name with the MI code.
1997-03-08Sync with NetBSD of about 4 March.briggs
1997-01-24Sync w/ NETBSD_CURRENT_971122.briggs
1996-05-26Add OpenBSD Id string.briggs
1996-05-26Sync with NetBSD-current.briggs
1996-05-05add general ether_ioctl call in net/if_ethersubr.c,Michael Shalayeff
NS,IPX,X.25 special processing is now handled in there. reflect this amazing addition in all the ether ifaces. ppl, pls check the stuff.
1996-02-04Cosmetic unsigned char -> u_charbriggs
1996-02-02Force the talley counters to be read when we get the interrupt. GCCbriggs
was nicely optimizing the reads out for us. Kudos for this one go to Steven R. Weiss <srw@hvcn.org>. (from netbsd)
1996-01-14from netbsd:briggs
Patch to at least recognise FOCUS EtherLAN. From Erik Bertelson <erik@sockdev.uni-c.dk>
1995-12-27from netbsd:Theo de Raadt
Change splimp -> splnet in Ethernet, ARCnet, and FDDI drivers.
1995-10-18initial import of NetBSD treeTheo de Raadt