Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-05-22 | Support bluetooth adapter found in my MSI S270 laptop. ok deraadt@, jasper@, | Matthieu Herrb | |
grange@. | |||
2007-05-22 | sync | Matthieu Herrb | |
2007-05-22 | Add a second MSI bluetooth adapter. ok deraadt@ jasper@ grange@ | Matthieu Herrb | |
2007-05-21 | Remove le{16,32}toh macros | Jonathan Gray | |
2007-05-21 | Remove logprintf macro | Jonathan Gray | |
2007-05-21 | Remove Ether_ifattach macro | Jonathan Gray | |
2007-05-21 | Remove unused bswap{16,32} macros | Jonathan Gray | |
2007-05-21 | Remove ifdef __otherbsd__ mess; no binary change. | Jonathan Gray | |
2007-05-20 | addess -> address | Miod Vallat | |
2007-05-20 | regen | Robert Nagy | |
2007-05-20 | add Brother MFC 210C and Logitech QuickCam Notebook Deluxe IDs; | Robert Nagy | |
from brad. | |||
2007-05-20 | Convert ehci and ucom to rwlock. | Jonathan Gray | |
Kill the usb specific lockmgr wrapper as nothing uses it now. ok thib@ | |||
2007-05-18 | fix the check of wsmouse_calibcoords values and | Robert Nagy | |
invert the X or Y coordinates to make the top left corner (0,0). | |||
2007-05-14 | Convert from lockmgr to rwlock. | Jonathan Gray | |
Initial diff from krw@, uneeded lock_mii()/unlock_mii() on all commands in existing code removed by me so it doesn't try to recurse. ok krw@ | |||
2007-05-13 | sync comment with reality | Felix Kronlage | |
2007-05-08 | Make use of struct wsmouse_calibcoords and add ioctl support | Robert Nagy | |
for getting and passing calibration values. Move the scale struct to uts_softc so that each device can have it's own values instead of using the global one. ok miod@ | |||
2007-05-06 | More lockmgr -> rwlock low hanging fruit. | Kenneth R Westerback | |
ok dlg@ | |||
2007-05-05 | #include <sys/lock.h> not needed. i.e. these compile fine without it. | Kenneth R Westerback | |
2007-05-05 | Remove axe_rxstart() which is an uneeded leftover from the FreeBSD version. | Jonathan Gray | |
2007-05-03 | Support ONDA Communication H600. | Jonathan Gray | |
Tested by Massimo Lusetti <massimo@cedoc.mo.it> | |||
2007-05-03 | regen | Jonathan Gray | |
2007-05-03 | ONDA Communication H600 | Jonathan Gray | |
2007-04-26 | USB device lists do not need a terminating sentinel, so don't provide any; | Miod Vallat | |
this should prevent phantom devices from attaching axe or uberry on some machines. ok deraadt@ | |||
2007-04-25 | Add suport for printing debug information like coordinates if UTS_DEBUG | Robert Nagy | |
is defined and make sure that we are calling wsmouse_input every time the screen gets touched on different types of touchscreens. Some minor cleanups while here. | |||
2007-04-23 | Add an unbranded device I have, chip says its a PL-2303HX. | Jonathan Gray | |
2007-04-23 | regen | Jonathan Gray | |
2007-04-23 | New unbranded uplcom(4). | Jonathan Gray | |
2007-04-21 | Back out last. the world is not i386. | Artur Grabowski | |
2007-04-21 | Remove unused header files. | Marc Balmer | |
2007-04-16 | regen | Claudio Jeker | |
2007-04-16 | Add Tenda TWL541U and XBOX 360 wireless adapter ids. | Claudio Jeker | |
2007-04-16 | Another unbranded udav(4) device. | Jonathan Gray | |
From laurent FANIS <laurent.fanis@gmail.com> | |||
2007-04-16 | regen | Jonathan Gray | |
2007-04-16 | Another unbranded udav(4) device. | Jonathan Gray | |
From laurent FANIS <laurent.fanis@gmail.com> | |||
2007-04-10 | Add support for a fourth axis on wsmouse devices, e.g. on the Apple Might | Miod Vallat | |
Mouse. Currently limited to USB mice. Adapted from a diff from Gareth <garf@loveandnature.co.za> on tech@ | |||
2007-04-10 | ``it's'' -> ``its'' when the grammar gods require this change. | Miod Vallat | |
2007-04-09 | Assert my copyright for the AX88178/AX88772 bits over the last few years. | Jonathan Gray | |
2007-04-09 | Remove any possibility of of an underflow happening when | Jonathan Gray | |
pulling packets out of the usb buffer in rxeof. Potential issue pointed out by Hans Petter Selasky <hselasky@c2i.net> | |||
2007-04-09 | Add missing letoh16() for eeprom value. | Jonathan Gray | |
Pointed out by Hans Petter Selasky <hselasky@c2i.net> | |||
2007-04-05 | regen | Ted Unangst | |
2007-04-05 | laurence tratt says his cable mostly works with this | Ted Unangst | |
ok millert | |||
2007-04-03 | Data direction was not properly encoded in (unused) | Jonathan Gray | |
AX88178 write nodeid command. From Hans Petter Selasky <hselasky@c2i.net> | |||
2007-04-01 | Correct URL to UHCI spec. | Jonathan Gray | |
From dunceor@gmail.com | |||
2007-04-01 | s/multpile/multiple/ | Ray Lai | |
From Dunceor. | |||
2007-03-31 | Print correct function name in diagnostic output. | Alexander Bluhm | |
ok pedro | |||
2007-03-27 | regenerate | Chris Kuethe | |
ok pvalchev | |||
2007-03-27 | u-blox ANTARIS4 GPS receiver | Chris Kuethe | |
ok pvalchev | |||
2007-03-23 | the input length is different on the eGalax and ITM screens, | Robert Nagy | |
so let's adapt the code by specifing the corrent length and and move the check to the correct place. | |||
2007-03-22 | split userland & kernel struct sensor/sensordev so that the addition | Theo de Raadt | |
of new fields in the future is less disruptive. This is done similar to how struct proc is handled for ps(1). ok jmc (man page changes) tested fkr simon, and more suggestions from millert | |||
2007-03-22 | Perform legacy emulation handover for USB1 companion controllers immediately | Christopher Pascoe | |
but defer the remainder of their initialisation until after the other devices on their PCI bus have attached. This ensures that any USB2 controller has also completed its initialisation before we start to initialise the USB1 parts. This minimises the chance that a nasty SMM implementation will trash the USB1 controller's config when it performs legacy emulation handover of the USB2 part. This time without accidentally leaving the OHCI controller shutdown, and with some cosmetic fixes. ok dlg@, OHCI tests mglocker@ |