Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-05 | audio encoding conversion cleanup | Jacob Meuser | |
- the endianness of the conversions don't depend on the endianness of machine the conversions are built on, but the endianness of the audio data itself. choose encoding conversions explicitly, instead of relying on #defines based on the endianness of the machine. - replace home-grown conversions with comparable conversions in auconv.c and mulaw.c - use the proper conversion for ulinear_be:16 -> slinear_le:16 in auixp(4) thanks ajacoutot@ and sthen@ for !x86 testing | |||
2007-11-04 | improve/repair locator printing; ok jsg | Theo de Raadt | |
2007-11-03 | two fixes from FreeBSD: | Damien Bergamini | |
- fix an incorrect setting of `retry times' in case of zd1211b - increase max rx size so there's room for multi-frame transactions (slightly modified version) from the Linux zd1211rw driver: - patch registers CR47 and CR157 on devices that require it - fix power calibration setting on ZD1211B | |||
2007-11-01 | even better attach printing; Nicholas Marriott | Theo de Raadt | |
2007-11-01 | fix attach time messages; tested by Nicholas Marriott | Theo de Raadt | |
2007-11-01 | sync | Theo de Raadt | |
2007-11-01 | Admtek/Shantou ADM8515; nicm__@ntlworld.com | Theo de Raadt | |
2007-10-27 | Deal with usb string printing changes. | Jonathan Gray | |
2007-10-23 | sync | Marc Balmer | |
2007-10-23 | Add Meinberg Funkuhren and the USB 5131 DCF77 - Radio Clock. | Marc Balmer | |
2007-10-22 | HTC smartphone | Theo de Raadt | |
2007-10-22 | sync | Theo de Raadt | |
2007-10-22 | HTC smartphone | Theo de Raadt | |
2007-10-22 | Regen | Miod Vallat | |
2007-10-22 | More Microsoft mice, from FreeBSD | Miod Vallat | |
2007-10-20 | Remove unneeded scope declarations that shadows existing ones. krw@ ok | Federico G. Schwindt | |
2007-10-20 | Doh. Setting ITSDONE and returning SUCCESSFULLY_QUEUED just means | Kenneth R Westerback | |
there is another splbio()/splx and a check for ITSDONE before falling into the COMPLETE case. So just return COMPLETE if the command has completed (or never started). Simpler all around. | |||
2007-10-20 | DO NOT access xs after calling scsi_done(xs). It's not there anymore. | Kenneth R Westerback | |
Also set ITSDONE (a.k.a. XS_STS_DONE) in correct field - xs->flags (a.k.a. xs->xs_control) and not xs->status (a.k.a. xs->xs_status). 'totally OK' deraadt@ 'yes' beck@ | |||
2007-10-20 | DO NOT access xs after calling scsi_done(xs). It's not there anymore. | Kenneth R Westerback | |
'totally OK' deraadt@ | |||
2007-10-20 | sync | Bob Beck | |
2007-10-20 | Add ShanTou ZT6688 usb 10/000 nic - A udav sold in a generic package. | Bob Beck | |
ok jsg@, krw@, deraadt@ | |||
2007-10-14 | attach Planex GWUS54GD, from freebsd | Felix Kronlage | |
ok damien@ | |||
2007-10-14 | regen | Felix Kronlage | |
2007-10-14 | add device id for Planex GWUS54GD, from freebsd | Felix Kronlage | |
ok damien@ | |||
2007-10-13 | sync. | Marc Balmer | |
2007-10-13 | Add two Gude time signal station receivers. | Marc Balmer | |
2007-10-11 | treat usb vendor/product names as a locator, and have usbd_print handle it, | Theo de Raadt | |
so that it shows up before the :. as a result, all the usb devices do not need to have name printing code anymore. all this now works and prints nicely because usbd_probe_and_attach() is serialized. ok kettenis | |||
2007-10-11 | serialize usbd_probe_and_attach(); only let one usb device be match'd and | Theo de Raadt | |
attached at a time; ok kettenis | |||
2007-10-10 | sync | Theo de Raadt | |
2007-10-10 | shortening | Theo de Raadt | |
2007-10-10 | sync | Theo de Raadt | |
2007-10-10 | oops | Theo de Raadt | |
2007-10-10 | sync | Theo de Raadt | |
2007-10-10 | apple products; from dunceor | Theo de Raadt | |
2007-10-09 | malloc+memset(,0,) -> malloc+M_ZERO. 'Fixes' not zeroing of all | Kenneth R Westerback | |
allocated memory, as I can't see an obvious initialization of the memory elsewhere. NetBSD uses M_ZERO here. | |||
2007-10-08 | attach uslcom to the track systems traqmate | joshua stein | |
ok jsg | |||
2007-10-08 | support 230400 speed | joshua stein | |
ok jsg | |||
2007-10-07 | regen | joshua stein | |
2007-10-07 | track systems traqmate gps data acquisition system | joshua stein | |
2007-10-06 | Simpliest memset(,0,) -> M_ZERO changes. One (caddr *) cast removal, | Kenneth R Westerback | |
otherwise just adding M_ZERO to malloc() and removing the immediately adjacent memset(,0,). | |||
2007-10-06 | Another NPBFILTER comment typo. | Jonathan Gray | |
From Jung <moorang@gmail.com> | |||
2007-09-28 | no longer used macros | Jacob Meuser | |
spotted by brad ok ratchov | |||
2007-09-25 | fix emulated encodings | Alexandre Ratchov | |
ok jakemsr@ | |||
2007-09-22 | regen | Felix Kronlage | |
2007-09-22 | whitespace nits | Felix Kronlage | |
ok jsg@ | |||
2007-09-19 | revert previous; still need sys/malloc.h for free(9) and friends here | Martin Reindl | |
noted by Markus Hennecke | |||
2007-09-19 | attach CFA 635 as a uftdi. | Pierre-Yves Ritschard | |
ok dlg@ | |||
2007-09-19 | sync. | Pierre-Yves Ritschard | |
2007-09-19 | Add the CFA 635 by CrystalFontz. | Pierre-Yves Ritschard | |
ok dlg@ | |||
2007-09-18 | Do not return from uts_intr() without restoring spl if it has been changed, | Miod Vallat | |
also clean up uts_get_pos() interface while there; spotted by and joint work with fgsch@, ok matthieu@ robert@ |