summaryrefslogtreecommitdiffstats
path: root/sys/dev/i2c/asb100.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* make it more apparent that when we are dealing with 16 bit registersderaadt2008-04-171-3/+3
| | | | | (not a series of 8 bit registers), the bytes come off the wire in big-endian order
* rework sensor tasks to use the kernels generic workq rather than a specialdlg2007-06-241-2/+2
| | | | | | | | | kernel thread of its own. the api has changed (which will be fixed in the manpage shortly) so all the users of sensor tasks that i can find have been fixed too. noone tested, so its going in to force people to run with it. "put it in" deraadt@
* split userland & kernel struct sensor/sensordev so that the additionderaadt2007-03-221-4/+4
| | | | | | 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
* adapt to new two-level sensor api; Constantine A. Mureninderaadt2006-12-231-37/+10
|
* make this match our code standardsderaadt2006-04-101-5/+5
|
* don't permanently disable temperature sensors when they fail a read,djm2006-03-041-3/+5
| | | | just mark it as invalid
* fix error messagedjm2006-01-311-3/+4
|
* Replace SENSOR_ADD() macro with a pair of functionsgrange2006-01-191-2/+2
| | | | | | | sensor_add()/sensor_del() so that sensors can be attached and detached dynamicaly. ok kettenis@ deraadt@ dlg@
* fix cut and paste error on FAN2 sysctl defdjm2006-01-011-4/+4
|
* spacingderaadt2005-12-311-2/+2
|
* add i2c driver for Asus ASB100 sensors using register info from lm_sensorsdjm2005-12-301-0/+426
driver (Asus believe this chip is such critically important IP they won't release docs for it); feedback deraadt@ and kettenis@, ok kettenis@