summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_pcn.c
AgeCommit message (Collapse)Author
2006-04-21repair intr establish error printfMichael Shalayeff
2006-04-20Fix various printf() issues: too many arguments, not enough arguments, argumentMiod Vallat
order reversed, wrong modifiers. ok deraadt@ marco@ mickey@
2006-03-25allow bpf(4) to ignore packets based on their direction (inbound orDamien Miller
outbound), using a new BIOCSDIRFILT ioctl; guidance, feedback and ok canacar@
2006-03-19recognize the 976 and 978Brad Smith
2006-03-12Make use of pci_matchbyid().Brad Smith
2006-03-12with pcn(4) now in place remove or replace the references to PCI le(4)Martin Reindl
and complement pcn* at pci? where useful as request by brad@ ok brad@
2006-02-22IBM makes a pcn card that shows up as:Brad Smith
Trident Microsystems 4DWAVE DX (ethernet network, revision 0x25) Unfortunately, this is an autri sound card. Special case the match routines for both drivers so if_pcn properly picks it up and autri does not. From NetBSD ok mickey@, tested by martin@
2006-02-03jump to the allmulti target in pcn_set_filter() if the IFF_ALLMULTI flagBrad Smith
is set.
2005-12-16fix error printf's.Brad Smith
2005-11-03- fix error message printed when pci_mapreg_map() fails.Brad Smith
- initialize error to 0 in pcn_ioctl().
2005-08-01Remove spurious space.Mark Kettenis
ok brad@
2005-07-28New driver for the AMD PCnet-PCI family of Ethernet chips. ThisBrad Smith
driver uses direct DMA to mbufs (like other PCI network drivers, and unlike the old "le at pci" driver), and also supports communication with the MII-connected PHYs on the 10/100 boards. From NetBSD