summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
1999-02-27syncFederico G. Schwindt
1999-02-27ESS ES1878 Plug and Play AudioD; hbaez@usa.net.Federico G. Schwindt
1999-02-26Sync with FreeBSD:Jason Wright
o fix multicast hash calculation (return the right set of bits) o make sure ifp->if_snd.ifq_maxlen is initialized o use RL_CMD_EMPTY_RXBUF instead of magic constant 1 o make sure the delta 8139 boards are setup correctly
1999-02-26compensate for the fact that the check for ownership of a unicast packetJason Wright
has moved to ether_input()
1999-02-26syncJason Wright
1999-02-26PNIC IIJason Wright
1999-02-26compatibility with uvm kmem allocatorsArtur Grabowski
1999-02-26uvm compatArtur Grabowski
1999-02-25Fix autosetting of d_type and d_typename that I introduced in revTodd C. Miller
1.36. Checking wdp_config for WD_CFG_FIXED is incorrect. Default to ESDI/IDE if WD_CAP_LBA is set in wdp_capabilities instead. Also, set d_typename for non-IDE/ESDI to "ST506/MFM/RLL" not "ST506/MFM/RLL di" (the latter caused by truncation to 16 characters).
1999-02-24handle scatter-gather, seperate src/dst mbuf, etcTheo de Raadt
1999-02-24why do new manufacturers make identical products, but change the vendor field?Theo de Raadt
1999-02-23syncTheo de Raadt
1999-02-234 more rhineII and 8139 clonesTheo de Raadt
1999-02-23Do a better job of reinitializing it the xl is found in powered down state.Jason Wright
1999-02-21use src/dst descriptor chaining out of an mbufTheo de Raadt
1999-02-20syncTheo de Raadt
1999-02-20a isapnp pcicTheo de Raadt
1999-02-20fleshTheo de Raadt
1999-02-19syncTheo de Raadt
1999-02-19new usr modemTheo de Raadt
1999-02-19make vm_page_alloc_contig() a std functionTheo de Raadt
1999-02-19connect aeonTheo de Raadt
1999-02-19invertex aeon driver baseTheo de Raadt
1999-02-19syncTheo de Raadt
1999-02-19shorten AEON nameTheo de Raadt
1999-02-16syncTheo de Raadt
1999-02-16AEON is an encryption cardTheo de Raadt
1999-02-16syncTheo de Raadt
1999-02-16Invertex productsTheo de Raadt
1999-02-16Merge from NetBSD, mostly indentationNiklas Hallqvist
1999-02-15Change 3rd range in pcic_ranges to use from 0x390 to 0x3b0.Federico G. Schwindt
1999-02-13Always check that "range->start" and "range->len" is within the bounds ofFederico G. Schwindt
"h->sc->iobase" and "h->sc->iosize" before call bus_space_alloc.
1999-02-13If the card is not present be sure to always call bus_space_unmap on exit.Federico G. Schwindt
1999-02-13If the card is not present be sure to always call bus_space_unmap on exit.Federico G. Schwindt
1999-02-09syncTheo de Raadt
1999-02-09more fleshTheo de Raadt
1999-02-09Fix cua device to not block on open.Jim Rees
Turn off chip (and dtr) on interrupted open.
1999-02-08regenTodd C. Miller
1999-02-08PCI_PRODUCT_CONTAQ_SIO -> PCI_PRODUCT_CONTAQ_82C693Todd C. Miller
1999-02-08syncJason Wright
1999-02-08Davicom DM9101; from NetBSD.Jason Wright
1999-02-07Break out of loop in isa_intr_check() if we know what IRQ we want but ↵Todd C. Miller
isa_intr_check() says we can't have it.
1999-02-06Always initialize sc->handle[i].flags.Federico G. Schwindt
Check if the socket is present before disabling the CSC_INTR.
1999-02-04Fix bit test; from netbsd.Jason Wright
1999-02-04correct attach printing for 4-port cardsTheo de Raadt
1999-02-03syncTheo de Raadt
1999-02-03syncJason Downs
1999-02-03Creative Labs has some products...Jason Downs
1999-02-01New PCI arch, GalileoPer Fogelstrom
1999-01-31Fix clobbers so that GENERIC may compile with egcs.Marc Espie
Historically, the documentation of extended asm was lacking, namely you should NOT specify the same register as an input, and a clobber. If the register is clobbered, it should be specified as an output as well, e.g., by linking input and output through the "number" notation. (Beware of lvalues, some local variables needed...) In older versions, up-to egcs1.1.1, the compiler did not even warn about it, but it was liable to output bad code. Newer egcs are pickier and simply refuse to swallow such code.