Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-30 | Give up trying to communicate after 10 consecutive errors - the device | Christopher Pascoe | |
is most likely not coming back. | |||
2006-05-30 | sync with reality. | Christopher Pascoe | |
2006-05-30 | If a zero-length bulk or interrupt transfer is requested then assume | Christopher Pascoe | |
USBD_FORCE_SHORT_XFER to ensure that we actually build and execute a transfer. Based on changes in FreeBSD rev1.47 | |||
2006-05-29 | Regen (although this does not change anything for these keyboards). | Miod Vallat | |
2006-05-29 | Fix a comment, remove a stray variable assignment. | Christopher Pascoe | |
2006-05-29 | Eliminate variable shadowing. | Christopher Pascoe | |
From NetBSD r1.104 | |||
2006-05-29 | Missed header file change in previous commit. | Christopher Pascoe | |
2006-05-29 | Correct status value check for OHCI isoc transfer; | Christopher Pascoe | |
the spec says that "not accessed" is 111x, not 1111. From NetBSD rev1.158 | |||
2006-05-29 | Only check USBD_FORCE_SHORT_XFER for writes. | Christopher Pascoe | |
From NetBSD rev1.164 | |||
2006-05-29 | Only do the software part of an abort if we are dying. | Christopher Pascoe | |
2006-05-29 | Only do the software part of an abort if we are dying. | Christopher Pascoe | |
2006-05-29 | Make sure all physical addresses are filled in the qTD even when we have | Christopher Pascoe | |
a page offset. From Dan Ellis via NetBSD rev 1.103 | |||
2006-05-28 | Make sure to honor the USBD_FORCE_SHORT_XFER flag and generate an empty | Christopher Pascoe | |
transfer when necessary. From Dan Ellis via NetBSD rev 1.102 | |||
2006-05-28 | Change the timedelta sensor descritpion so that the first four bytes contain | Marc Balmer | |
the NTP identifier (filled with spaces), followed by a space and the station name (which might be the same as the NTP identifier). All timedelta sensor have to follow this scheme as OpenNTPD needs it. Requested by henning. | |||
2006-05-27 | Add support for multicast packets. | Christopher Pascoe | |
ok dlg@ | |||
2006-05-27 | There is no longer the need to create INVALID sensors on stock, the sensor | Marc Balmer | |
framework will create hotplug events for sensor addition/deletion. ntpd will catch these events. | |||
2006-05-27 | When the device is attached, immediately create the timedelta sensor with the | Marc Balmer | |
SENSOR_FINVALID flag set and without a description. We do not need a dummy description as a sensor with the FINVALID flags set will not show up or be used anyways. It's merely an indication to applications that there is a sensor that will eventually have a correct value. The SENSOR_FINVALID flag is removed and the description is set to the proper clockname as soon as we have received the first valid time information. This enables ntpd to check for hotplug events and rescan the list of timedelta sensors after a hotplug event. discussed with deraadt. | |||
2006-05-22 | Attach routines can fail before calling *hook_establish(), and they | Kenneth R Westerback | |
often rely on the detach routine for cleanup. So be consistant and careful by checking for a NULL hook before calling *hook_disestablish in detach routines. ok mickey@ brad@ dlg@ | |||
2006-05-22 | Expunge all #if defined(__NetBSD__) and #if defined(__FreeBSD__) crud. | Kenneth R Westerback | |
Misused in many cases anyway. ok dlg@ | |||
2006-05-22 | Don't call shutdownhook_disestablish() unless there is a shutdownhook | Kenneth R Westerback | |
established. Should fix PR #5128. ok dlg@ | |||
2006-05-18 | some devices can do weird things upon a warm reboot so add a shutdown | Jolan Luff | |
hook which explicitly resets and stops the device; fixes pr/5001 ok dlg@ | |||
2006-05-14 | Add a quirk to force the Wi-spy spectrum analyser to attach as ugen. | Matthieu Herrb | |
It claims to be a HID device, but it's not really one. ok miod@, jsg@. | |||
2006-05-13 | regen | Matthieu Herrb | |
2006-05-13 | Add Metageek Wi-Spy. ok deraadt@ | Matthieu Herrb | |
2006-05-11 | if (!foo & BAR) bad, if (!(foo & BAR)) better, and I'll have a cookie per | Miod Vallat | |
file. | |||
2006-05-11 | more microHAM devices | Jason Wright | |
2006-05-11 | more microHAM devices (from linux) | Jason Wright | |
2006-05-11 | support the microHAM radio/computer interfaces | Jason Wright | |
2006-05-11 | sync | Jason Wright | |
2006-05-11 | 2 microHAM devices from linux, and one from me | Jason Wright | |
2006-05-04 | free resources on close; found by Alexandre Ratchov <alex@caoua.org> | Michael Shalayeff | |
2006-05-04 | fix interrupt out transfers | Jolan Luff | |
from netbsd, ok dlg | |||
2006-05-01 | Regen | Pedro Martelletto | |
2006-05-01 | Add Neodio 8-in-1 Flash Device Controller, okay dlg@ | Pedro Martelletto | |
2006-05-01 | Zero the memory allocated for subdevs[], preventing a quick trip to | Kenneth R Westerback | |
ddb>. Discovered by trying 'usbdevs -v' while a broken card reader was trying to attach. Broken device provided by Manuel Pata. ok pedro@ deraadt@ | |||
2006-04-29 | Add a close method to send the shutdown command, which presumably | Jonathan Gray | |
put the adapter in a low power usage state. | |||
2006-04-29 | Driver for Silicon Laboratories CP2101/CP2102 based serial adapters. | Jonathan Gray | |
ok dlg@ | |||
2006-04-29 | regen | Jonathan Gray | |
2006-04-29 | Add a bunch of CP210x based serial adapters found in Linux driver. | Jonathan Gray | |
2006-04-28 | regen | Jonathan Gray | |
2006-04-28 | Add some ids for newer ralink wireless chips. | Jonathan Gray | |
2006-04-27 | 2 lines of code in most drivers, to do the timestamping; ok miod kettenis | Theo de Raadt | |
2006-04-27 | cope with recent changes in the sensor framework | Marc Balmer | |
- provide the timedelta in nanoseconds - provide a timestamp in the sensor support for HBG and DCF77: - detect clocktype (DCF77 or HBG) and set it once is the sensor description | |||
2006-04-24 | oops | Theo de Raadt | |
2006-04-24 | sync | Theo de Raadt | |
2006-04-24 | egalax | Theo de Raadt | |
2006-04-23 | Remove superfluous use of usb_callout_init() (== timeout_set()). | Kenneth R Westerback | |
Superfluous because the immediately following usb_callout() does the same timeout_set(). And superfluous because the same usb_callout_init was done during attach. ok dlg@ | |||
2006-04-23 | regen | Brad Smith | |
2006-04-23 | add the Dell Bluetooth 350 module. | Brad Smith | |
From Ben Lovett <ben at tilderoot dot com> | |||
2006-04-23 | remove all the compat stuff for the otherbsds. this is openbsd, i prefer | David Gwynne | |
reading openbsd code when im working in the openbsd source tree. this makes the file immediately less confusing since you can search for a macro and see how its implemented on openbsd without having to figure out if you're in the netbsd or freebsd chunk first. "no problem with me" deraadt@ |