aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/digi/digi.c
Commit message (Expand)AuthorAgeFilesLines
* Remove the source to digi(4).John Baldwin2017-04-251-1560/+0
* sys/dev: use our nitems() macro when it is avaliable through param.h.Pedro F. Giffuni2016-04-191-2/+2
* Fix our ioctl(2) implementation when the argument is "int". NewRuslan Ermilov2006-09-271-1/+12
* - Push Giant down into linker_reference_module().John Baldwin2006-06-201-3/+3
* Only reference the firmware module once rather than twice. The extra callJohn Baldwin2006-05-251-1/+0
* Eliminate two unused arguments to ttycreate().Poul-Henning Kamp2005-10-161-1/+1
* Increase boot-time DigiBIOS initialization timeout to allowAndre Oppermann2005-09-141-1/+1
* o avoid potential null ptr deref if symbol lookup failsSam Leffler2005-02-251-2/+6
* Add new function ttyinitmode() which sets our systemwide defaultPoul-Henning Kamp2004-10-181-16/+1
* Use generic tty code instead of local copies.Poul-Henning Kamp2004-10-061-556/+198
* Remove buggy (root filesystems may not have cdev) and pointlessPoul-Henning Kamp2004-07-281-8/+3
* Preparation commit for the tty cleanups that will follow in the nearPoul-Henning Kamp2004-07-151-1/+1
* Give kldunload a -f(orce) argument.Poul-Henning Kamp2004-07-131-2/+2
* Introduce ttygone() which indicates that the hardware is detached.Poul-Henning Kamp2004-07-111-17/+4
* Define the tty methods as typedefs.Poul-Henning Kamp2004-06-301-3/+2
* Use generic support for BREAK and modem control ioctls.Poul-Henning Kamp2004-06-251-62/+66
* Put the pre FreeBSD-2.x tty compat code under BURN_BRIDGES.Poul-Henning Kamp2004-06-211-0/+4
* Second half of the dev_t cleanup.Poul-Henning Kamp2004-06-171-1/+1
* Do the dreaded s/dev_t/struct cdev */Poul-Henning Kamp2004-06-161-5/+5
* Deorbit COMPAT_SUNOS.Poul-Henning Kamp2004-06-111-2/+2
* Centralize the line discipline optimization determination in a functionPoul-Henning Kamp2004-06-041-17/+3
* Manual edits to change linesw[]-frobbing to ttyld_*() calls.Poul-Henning Kamp2004-06-041-4/+2
* Machine generated patch which changes linedisc calls from accessingPoul-Henning Kamp2004-06-041-13/+13
* Make the remaining serial drivers call ttyioctl() rather than callingPoul-Henning Kamp2004-06-041-12/+3
* There is no need to explicitly call the stop function. In all likelyhoodPoul-Henning Kamp2004-06-011-1/+0
* Add missing <sys/module.h> includesPoul-Henning Kamp2004-05-301-0/+1
* Device megapatch 4/6:Poul-Henning Kamp2004-02-211-1/+2
* Device megapatch 3/6:Poul-Henning Kamp2004-02-211-2/+0
* Device megapatch 1/6:Poul-Henning Kamp2004-02-211-2/+0
* Eliminate bogus use of makedev(): rather than synthesize the dev_t, usePoul-Henning Kamp2003-09-261-2/+1
* Consistently use the BSD u_int and u_short instead of the SYSV uint andJohn Baldwin2003-08-071-1/+1
* 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