summaryrefslogtreecommitdiff
path: root/sys/dev/digi/digi.c
Commit message (Expand)AuthorAgeFilesLines
* Make nokqfilter() return the correct return value.Poul-Henning Kamp2003-03-031-1/+1
* Gigacommit to improve device-driver source compatibility betweenPoul-Henning Kamp2003-03-031-14/+10
* Use canonical format for cdevsw initialization.Poul-Henning Kamp2003-03-021-14/+14
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-7/+7
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-7/+7
* Be consistent about "static" functions: if the function is markedPoul-Henning Kamp2002-09-281-4/+4
* Make delay iteration counts a function of hz as the delay period in eachBrian Somers2002-04-171-5/+5
* Yet another adjustment of digi_delay(). The delay is now consistentBrian Somers2002-04-101-8/+8
* Change more uses of tsleep() to digi_delay() and make the loop counts moreBrian Somers2002-04-101-7/+7
* Add a digi_delay() function and use it instead of tsleep() when pollingBrian Somers2002-04-101-5/+14
* Use the PCI port for pci cards, not just for PCIXR cards.Brian Somers2002-04-101-6/+6
* Change linker_reference_module() so that it's passed a structBrian Somers2002-04-101-2/+8
* Add some missing MODULE_VERSIONsBrian Somers2002-04-101-0/+2
* Change the suser() API to take advantage of td_ucred as well as do aJohn Baldwin2002-04-011-3/+3
* Use suser() instead of checking cr_uid against 0 directly.John Baldwin2002-03-261-1/+1
* Fix warnings. The driver would be more useful with a DRIVER_MODULE()Peter Wemm2002-02-271-1/+1
* #include "opt_compat.h" so that the support for old ioctls can actuallyBruce Evans2002-02-151-0/+2
* Staticise the con_bios and digi_devclass variables, since they aren't neededMike Smith2002-01-081-2/+2
* - Fix a bunch of malloc calls where the M_FLAG is incorrectly used; itAndrew R. Reiter2001-12-071-5/+5
* devsw_add() and cdevsw_remove() are no longer needed.Poul-Henning Kamp2001-11-041-20/+0
* Send a .4 second BREAK rather than a .25 second break so thatBrian Somers2001-09-231-2/+2
* KSE Milestone 2Julian Elischer2001-09-121-7/+7
* Allow individual ports to use alternate pin settings (swap dsr & cd)Brian Somers2001-06-201-12/+83
* Use linker_reference_module() instead of hard-coding the digi_*Brian Somers2001-06-181-14/+7
* MALLOC -> malloc, FREE -> freeBrian Somers2001-05-221-5/+5
* #include <digi/*.h> -> #include <dev/digi/*.h>Brian Somers2001-05-191-4/+4
* digiio.h has moved to /usr/include/sysBrian Somers2001-05-191-5/+5
* digiModel_t -> enum digi_modelBrian Somers2001-05-171-1/+1
* Remove all the mutex stuff - suggested by jhbBrian Somers2001-05-081-35/+3
* sys/mutex.h requires sys/lock.h for LINTBrian Somers2001-05-071-0/+1
* Change COM_LOCK/COM_UNLOCK to a regular mutex - still conditional onBrian Somers2001-05-071-25/+14
* Make LINT compile again.Brian Somers2001-05-061-0/+1
* Add a ``digi'' driver.Brian Somers2001-05-021-0/+1941