summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2006-05-11if (!foo & BAR) bad, if (!(foo & BAR)) better, and I'll have a cookie perMiod Vallat
file.
2006-05-11more microHAM devicesJason Wright
2006-05-11more microHAM devices (from linux)Jason Wright
2006-05-11support the microHAM radio/computer interfacesJason Wright
2006-05-11syncJason Wright
2006-05-112 microHAM devices from linux, and one from meJason Wright
2006-05-11fix incorrect ADC list for ALC880.Brad Smith
From kent NetBSD
2006-05-10Add some airplane code.Marco Peereboom
add bio hooks. add scsi entry point for io.
2006-05-10regenMichael Shalayeff
2006-05-10a few more oxford thingies and orderMichael Shalayeff
2006-05-09fix non-ALTQ case.Brad Smith
2006-05-09Sprinkle a few bus_space_barrier() calls. Some of these may not be strictlyMark Kettenis
necessary, but they will help debugging of alipm(4) still messes up the bus on sparc64. Always enable on sparc64 again. ok deraadt@
2006-05-08Add smbios support for i386 and amd64, fix ipmi to use this new functionallity,Gordon Willem Klok
hook up some sysctls to add system vendor/product/version and UUID reporting. "get it in" deraadt@
2006-05-08fix printf.Brad Smith
2006-05-08KNFBrad Smith
2006-05-08silence a debug message; from kili@outback.escape.de; ok miodTheo de Raadt
2006-05-08Make ath_attach() return error if the RF is unsupported so the PCI codePedro Martelletto
can disable its shutdown hooks, otherwise we will panic upon halt. Okay jsg@ and brad@.
2006-05-08readable names for AD1981HD codecBrad Smith
From NetBSD
2006-05-08ALC260: improve readability of mixer item names.Brad Smith
From NetBSD
2006-05-08support for 8ch playback with STAC9221D codec.Brad Smith
From NetBSD
2006-05-08sync NetBSD RCS idsBrad Smith
2006-05-08Don't crash when a connection list has invalid NIDs.Brad Smith
From NetBSD
2006-05-08add some trace messages in azalia_mixer_init().Brad Smith
From NetBSD
2006-05-08OpenBSD RCS idsBrad Smith
2006-05-08- make this compile with AZALIA_DEBUGBrad Smith
- introduce WIDGET_CHANNELS macro From NetBSD
2006-05-08- Don't assume the device always has PCI_MAPREG_MEM_TYPE_64BIT. [1]Brad Smith
- OpenBSD-ify dmesg entry and error path printf's. [1] From NetBSD
2006-05-08Revert last commit till a better method can be found.Jonathan Gray
At least one system (Ben Lovett's) had issues with the change.
2006-05-07Add remaining glue for physical disk count.Marco Peereboom
Fix a bugglet in the size of GDT_IOCHAN_DESC structure.
2006-05-07Fix cut'n'paste abuse in previous typo fix; spotted by Constantine A. Murenin,Miod Vallat
thanks!
2006-05-07oops, use correct size for GET_IOC_CHAN_DESCMarco Peereboom
2006-05-07Add bio framework (not functional yet).Marco Peereboom
Replace index into struct for device name with DEVNAME macro. Started translating linux driver back into swedish for gdt->sc_more_proc part. Added initial scsi passthrough magic. Added 2 new debug bits. ok krw
2006-05-07add a name to rwlock so that we can tell where procs are getting stuckTed Unangst
without breaking into ddb. doubles the size of rwlock [1], but moving forward this really helps. ok/tested pedro fgsch millert krw [1 - next person to add a field to this struct gets whipped with a wet noodle]
2006-05-07Add abstraction for resistor factor; makes it easier to compare them toMark Kettenis
the datasheets. Fix a few typos too. From Constantine Murenin <mureninc@gmail.org>.
2006-05-07fix a typo and some KNF.Brad Smith
2006-05-07- Remove unreachable bus_dmamap_unload() in em_dma_malloc().Brad Smith
- Set the dma_tag to NULL upon failure in em_dma_malloc(). - In em_dma_free(), return if dma_tag is NULL.
2006-05-07- Return if there is nothing to do in the interrupt handler.Brad Smith
- Check for IFF_RUNNING in the interrupt loop.
2006-05-07Default to Ultra DMA Mode 6 not 5 when we know we have a nativeJonathan Gray
SATA drive. ok grange@
2006-05-06remove a block of duplicated defines, ok marcoPeter Stromberg
2006-05-06if the fan data rate is per second convert it to per minute, ok marcoPeter Stromberg
2006-05-06restore ALTQ support which was lost with rev 1.87Brad Smith
2006-05-04free resources on close; found by Alexandre Ratchov <alex@caoua.org>Michael Shalayeff
2006-05-04fix interrupt out transfersJolan Luff
from netbsd, ok dlg
2006-05-03Provide a function pointer that allows for the wdc resetJonathan Gray
method to be changed as required. This will be required for dealing with several chips in pciide.
2006-05-03regenBrad Smith
2006-05-03add the Neterion Xframe-II 10GbE product id.Brad Smith
2006-05-01RegenPedro Martelletto
2006-05-01Add Neodio 8-in-1 Flash Device Controller, okay dlg@Pedro Martelletto
2006-05-01- when setting the interface address, only call ixgb_init() if the interfaceBrad Smith
is not already running. - remove splnet usage from ixgb_intr(). - replace magic value of 32 with IXGB_MAX_SCATTER.
2006-05-01sprinkle some tabs.Brad Smith
2006-05-01Activate Tx descriptor poll timer in order to protect possible lossBrad Smith
of SK_TXBMU_TX_START command. Previously the driver continuously issued SK_TXBMU_TX_START when it notices pending Tx descriptors not processed yet in interrupt handler. That approach would add additional PCI write access overhead under high Tx load situations and it might fail if the first SK_TXBMU_TX_START was lost and no interrupt is generated from the first SK_TXBMU_TX_START command. From FreeBSD