summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2007-11-25First step towards PCI Express/ExpressCard hotplug. Unplug should work onMark Kettenis
detachable drivers. "put it in" deraadt@
2007-11-25Make msk(4) detachable.Mark Kettenis
"can't be wrong" deraadt@
2007-11-24First step towards PCI Express/ExpressCard hotplug. Unplug should work onMark Kettenis
detachable drivers. "put it in" deraadt@
2007-11-24The Sigmatel codec id 7662 looks identical to STAC7661 and works fine withDeanna Phillips
the code here. Tested by Rob Lytle, thanks.
2007-11-24typoMiod Vallat
2007-11-24some spelling fixes from Martynas VenckusJason McIntyre
2007-11-24Allow for any baud rate within a range rather thanJonathan Gray
having a fixed list of rates.
2007-11-23Don't do anything in the shutdownhook if the registers aren't mapped.Mark Kettenis
ok deraadt@, fgsch@
2007-11-23ukbd_rawrepeat only there if WSDISPLAY_COMPAT_RAWKBDTheo de Raadt
2007-11-23Check for invalid dev indices, which could get here through ioctl.Deanna Phillips
2007-11-23If the card has gone away, return imediately from the interrupt handler.Mark Kettenis
ok dlg@
2007-11-23starting bits to implement hotplug of sili controllers. this adds the codeDavid Gwynne
to clean up the atascsi stuff, and has sili call it when its going away. tested on an expresscard sili variant by kettenis@
2007-11-23feng shuiDavid Gwynne
2007-11-23Don't use uninitialized variables in umbg_detach.Marc Balmer
2007-11-23Make sure that variables used during detach are initialized during attach.Marc Balmer
Discussed with dlg.
2007-11-23use copyin and copyout to get the actual ata data in and out of the kernelDavid Gwynne
for the ata ioctl used by atactl. i dont know how this worked before.
2007-11-23Sanitize the use of timeouts:Marc Balmer
Instead of calling timeout_set(..., NULL, NULL) in attach routines and later timeout_del(...) timeout_set(..., func, arg) timeout_add(..., time) set the function and argument in the initial timeout_set() call and only use timeout_add(..., time) later. ok dlg, fgsch, krw, winiger
2007-11-23implement translation of the scsi vpd page for fetching a disks serialDavid Gwynne
number. lets bioctl against an atascsi disk see the serial number. continually requested by henning@
2007-11-23kprintf -> printf, unbreaks USB_DEBUGMarc Winiger
"of course" deraadt@
2007-11-23t10 has a whole spec on doing SCSI to ATA translation called SAT. i wishDavid Gwynne
id known about it when i wrote atascsi. anyway. it says we should claim SPC-3 when we fake INQUIRY.
2007-11-23Degrade sensor status in an interrupt context.Marc Balmer
2007-11-23No need for process context to degrade the sensor status.Marc Balmer
Discussed with kettenis.
2007-11-21Collect subid #defines at the top.Deanna Phillips
2007-11-21attach Logitech QuickCam Pro 5000 as ugen for nowRobert Nagy
2007-11-21regenRobert Nagy
2007-11-21add Logitech QuickCam Pro 5000Robert Nagy
2007-11-21Remove superfluous function declarationBret Lambert
ok jsg@
2007-11-19armish and zaurus tooTheo de Raadt
2007-11-19802.11 radiotap + various tweaksDamien Bergamini
2007-11-19pairwise keys always have an ID equal to 0.Damien Bergamini
2007-11-19all TX rings have the same fixed size (256 entries) and this is notDamien Bergamini
configurable so simplify rings allocation a bit.
2007-11-19sigh, amd64 still uses that stupid acpi_enabled variable...Theo de Raadt
2007-11-19softc's come initialized to 0, you know...Theo de Raadt
2007-11-19store revision; from jsgTheo de Raadt
2007-11-19supply a place to store acpi version; from jsgTheo de Raadt
2007-11-19Initialize sc_facs earlier.Mark Kettenis
ok deraadt@, beck@, canacar@
2007-11-19When ignoring whether FR turns on or not, we should still set FRE,Christopher Pascoe
otherwise we risk leaving the port disabled after a stop/start during error recovery. ok dlg@
2007-11-18Add a few Cassini+ registers.Mark Kettenis
2007-11-18Don't add identity mappings for ISA interrupts for which we have an override.Mark Kettenis
Tested by many; seems to fix ian@'s evil Compaq, at least with GENERIC.MP.
2007-11-18eephy_mii_phy_auto() was deleted in r1.38. So delete the declaration too.Kenneth R Westerback
2007-11-18Fix for PR 5642 & 5643. Report and testing Martijn RijkeboerMarco Peereboom
<martijn at bunix dot org> ok deraadt kettenis
2007-11-18revert previous commit as requested by kettenis and deraadt.Brad Smith
2007-11-18regenBrad Smith
2007-11-18add the Planex GW-US54GXS adapter.Brad Smith
From the Linux ZyDAS driver. ok dlg@
2007-11-18remove use of static.Brad Smith
ok dlg@
2007-11-17Allow pci_get_capability to decode capabilities for PCI bridges.Brad Smith
From jmcneill NetBSD ok kettenis@ dlg@
2007-11-17Print the type that's wrong.Mark Kettenis
2007-11-17update the physical address of the RX buffer after bus_dmamap_load()Damien Bergamini
in the case where the old buffer is remapped.
2007-11-17fix reading of EEPROM for some adapters.Damien Bergamini
from Benjamin Close @ FreeBSD
2007-11-17- Add more LED support, like activity blinking (though just supportingMarcus Glocker
some devices yet). - Calculate RX rate which can be used later in bpf_mtap(). Diff ported from DragonFlyBSD, tested by some.