summaryrefslogtreecommitdiff
path: root/sys/dev/isa
AgeCommit message (Collapse)Author
2006-09-03add missing initializerschristos
2006-09-03add missing initializerschristos
2006-09-03add missing initializerschristos
2006-09-03- add missing initializerschristos
- remove impossible comparison
2006-09-03add missing initializerchristos
2006-09-02add missing initializerschristos
2006-09-02add missing initializerchristos
2006-08-30avoid empty if body.christos
2006-08-30Fix initializerchristos
2006-08-30fix incomplete initializers.christos
2006-08-30comment out impossible comparison.christos
2006-08-30add missing initializerschristos
2006-08-30add missing initializerchristos
2006-08-30fix incomplete initializerchristos
2006-08-27Fix incomplete declaration.christos
2006-08-17Fix all the -D*DEBUG* code that it was rotting away and did not even compile.christos
Mostly from Arnaud Lacombe, many thanks!
2006-07-13Add an option COM_REGMAP to allow com(4) to use an array of register indices.gdamore
This allows us to convert aucom to just another com attachment, and cleanup some code in the com_arbus.c. Additionally, we use a common com_cleanup routine rather than having a zillion copies of it in the attachment points. This has been tested on a number architectures, and it has been shown to get close to comparable performance when COM_REGMAP is defined, and comparable when it is not defined. Approved by core@. Fixes PR port-evbmips/32362.
2006-07-08Fix use the proper ioh.christos
2006-06-30Ankh-Morpork, we have a MIDI driver....chap
Merge from chap-midi branch, after ~month for review Comments by thorpej@ drochner@ and Alexandre Ratchov Incorporated: points by thorpej@ drochner@; preliminary support for a stats-collecting ioctl suggested by martin@ from comments by A.R. PR kern/32441 kern/32442 kern/32567 kern/32588 kern/32694 kern/33590 kern/33614 and one instance of kern/32651 ok martin@
2006-06-18Not related to chap-midi branch; corrects two compilation errors inducedchap
by a stack-police commit to the HEAD. (Is this why so many comments about catching up with -current say "here we go again"?)
2006-06-11* Improve description for all sensors.xtraeme
* Fix some voltage values. * Do not print rfact+data values for sensors without any returned data.
2006-06-09stack police: Introduce an opl_match function that uses malloc instead ofchristos
allocating ~2K of softc on the stack.
2006-06-08Adapt to timecounters.xtraeme
2006-06-05it_check(): check values from IT_RES48 and IT_RES52, if both are defaultxtraeme
values specified by the chip, continue attaching the driver (previously only checking IT_RES48 was enough and IT_RES52 was ignored).
2006-05-14integrate kauth.elad
2006-05-13Driver for iTE IT87xxF and compatibles hardware monitor. Addxtraeme
commented out entries on GENERIC and GENERIC_LAPTOP. Adapted from OpenBSD.
2006-04-26Make wtintr() prototype static too.rpaulo
In wtsense(), make msg local variable const.
2006-04-26Put back sys/proc.h for wakeup/tsleep.rpaulo
Fix more typos.
2006-04-26Make 3rd argument of wtwait() const.rpaulo
2006-04-26Fix an obvious typo.rpaulo
2006-04-26ktrace-lwp merge.rpaulo
2006-04-26ANSIfy, statify, KNfy.rpaulo
(and maybe deadfy some day?)
2006-04-23Make this compile again.christos
2006-04-22Make this compile again. We really need an ALL kernel.christos
2006-04-14Coverity CID 2453: Add negative checks.christos
2006-04-14On second thought, the whole statement is wrong.christos
2006-04-14Coverity CID 723: Fix bogus test.christos
2006-04-14Coverity CID 1104: Return early if no mbuf.christos
2006-04-14Coverity CID 1540: Avoid array overrunchristos
2006-04-14Make i/o statistics collection more generic, include tape drives andblymn
nfs mounts in the set of devices that statistics will be reported on.
2006-04-13PR/29683: Sergey Svishchev: Make this compile again..christos
2006-04-13Fix grammar in a comment, and use named constants for better readability.cube
2006-04-13Coverity CID 1320: Don't try to use drq16 as an index in an array if it is -1christos
2006-04-13Fix the MPU attachment on Aztech 1020 that has a separate mpu pnp devicechristos
instead of having the mpu in io[1]. From doomwarriorx at gmail dot com.
2006-04-12Add an extra cookie to the ioctl and mmap wsdisplay accessops that pointsjmmv
to the screen on which they are being called. The driver cannot guess this by itself but it is needed to implement, at least, the getwschar and putwschar functions in the correct place. There are no functional changes yet. Tested on i386 (vga, vga_raster, machfb, vesafb), macppc and sparc64. Suggested and reviewed by macallan@.
2006-04-11Add an option PCKBCNOTEST and defopt it. On the prep 7043 and 7248garbled
machines, the keyboard controller will not pass this test, but if you attach anyway, it works fine. Note that this test is specifically disabled in ic/pckbc.c, but given that it seems to work fine on other machines, leave it defaulted to on.
2006-03-29Use device_cfdata().thorpej
2006-03-28Use device_unit().thorpej
2006-03-25Use device_parent().thorpej
2006-03-17don't use MALLOC with a non-constant size; use malloc instead.christos