aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/pdq
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagrelease/3.3.0_cvscvs2svn1999-09-164-4/+4
| | | | | | | 'RELENG_3_3_0_RELEASE'. This commit was manufactured to restore the state of the 3.3-RELEASE image. Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
* $Id$ -> $FreeBSD$Peter Wemm1999-08-294-4/+4
| | | | Notes: svn path=/stable/3/; revision=50583
* Backport from -4.x, Fix '|' that was supposed to be '||'Matthew Dillon1999-01-291-2/+2
| | | | Notes: svn path=/stable/3/; revision=43380
* This commit was manufactured by cvs2svn to create branch 'RELENG_3'.cvs2svn1999-01-212-934/+0
| | | | Notes: svn path=/stable/3/; revision=42951
* Silence warnings.Eivind Eklund1999-01-121-2/+2
| | | | Notes: svn path=/head/; revision=42546
* The previous commit was bogus. malloc(..., M_WAITOK) should not beBruce Evans1999-01-011-2/+6
| | | | | | | | | | used in device attach routines. At least for attaches at boot time, actually waiting, or actually failing for malloc(..., M_NOWAIT), are almost equally unlikely and harmless, but using M_WAITOK interferes with automatic detection of bogus M_WAITOK's. Notes: svn path=/head/; revision=42230
* probe function changed from returning char * to const char *.Matthew Dillon1998-12-141-2/+2
| | | | Notes: svn path=/head/; revision=41771
* malloc(xxx, yyy, M_WAITOK) does not fail. This probably explains whyEivind Eklund1998-12-091-6/+2
| | | | | | | the bug in the check had never been discovered. Notes: svn path=/head/; revision=41611
* Fixed printf format errors. Only one left in LINT on i386's.Bruce Evans1998-08-241-4/+4
| | | | Notes: svn path=/head/; revision=38505
* This commit fixes various 64bit portability problems required forDoug Rabson1998-06-071-2/+2
| | | | | | | | | | | | | FreeBSD/alpha. The most significant item is to change the command argument to ioctl functions from int to u_long. This change brings us inline with various other BSD versions. Driver writers may like to use (__FreeBSD_version == 300003) to detect this change. The prototype FreeBSD/alpha machdep will follow in a couple of days time. Notes: svn path=/head/; revision=36735
* Removed unused #includes.Bruce Evans1998-02-203-19/+3
| | | | Notes: svn path=/head/; revision=33676
* Staticize.Eivind Eklund1998-02-091-2/+2
| | | | Notes: svn path=/head/; revision=33181
* Make INET a proper option.Eivind Eklund1998-01-083-5/+14
| | | | | | | | | | | | | | | This will not make any of object files that LINT create change; there might be differences with INET disabled, but hardly anything compiled before without INET anyway. Now the 'obvious' things will give a proper error if compiled without inet - ipx_ip, ipfw, tcp_debug. The only thing that _should_ work (but can't be made to compile reasonably easily) is sppp :-( This commit move struct arpcom from <netinet/if_ether.h> to <net/if_arp.h>. Notes: svn path=/head/; revision=32350
* Add shared EISA interrupt support.Justin T. Gibbs1997-09-211-2/+7
| | | | | | | Clean up the match routines so that they return const char * Notes: svn path=/head/; revision=29674
* Bruce wants the warning.Peter Wemm1997-09-141-2/+2
| | | | Notes: svn path=/head/; revision=29381
* Fix a warning.Peter Wemm1997-09-131-2/+2
| | | | Notes: svn path=/head/; revision=29325
* Removed unused #includes.Bruce Evans1997-08-021-27/+1
| | | | Notes: svn path=/head/; revision=27845
* Removed unused #includes.Bruce Evans1997-07-201-28/+1
| | | | Notes: svn path=/head/; revision=27534
* Removed unused #includes.Bruce Evans1997-06-141-16/+1
| | | | Notes: svn path=/head/; revision=26640
* Don't include <sys/ioctl.h> in the kernel. Stage 2: includeBruce Evans1997-03-241-2/+2
| | | | | | | <sys/sockio.h> instead of <sys/ioctl.h> in network files. Notes: svn path=/head/; revision=24204
* Don't include <sys/ioctl.h> in the kernel. Stage 1: don't includeBruce Evans1997-03-242-4/+2
| | | | | | | | it when it is not used. In most cases, the reasons for including it went away when the special ioctl headers became self-sufficient. Notes: svn path=/head/; revision=24203
* Catch up with the moving target: merge the change from rev 1.19 of theJoerg Wunsch1997-01-181-26/+22
| | | | | | | | | | | | | now dead sys/pci/if_pdq.c which has been committed about by the same time i made my tests with Matt's code. LINT should compile now again. Well, that's a clear case where ``CVS writer locks'' would certainly (not) have helped. :-] Notes: svn path=/head/; revision=21846
* This mega-merge brings Matt Thomas' 960801 FDDI driver (almost) upJoerg Wunsch1997-01-174-42/+34
| | | | | | | | | | | | | | | | to -current. Thanks goes to Ulrike Nitzsche <ulrike@ifw-dresden.de> for giving me a chance to test this. Only the PCI driver is tested though. One final patch will follow in a separate commit. This is so that everything up to here can be dragged into 2.2, if we decide so. Reviewed by: joerg Submitted by: Matt Thomas <matt@3am-software.com> Notes: svn path=/head/; revision=21830
* Finally import the 960801 of Matt Thomas' DEC FDDI driver. I'mJoerg Wunsch1997-01-176-0/+4413
importing it onto a vendor branch first, in the hope that this will make future maintenance easier. The conflicts are (hopefully) unimportant. More commits that actually bring this into the source tree will follow. Submitted by: Matt Thomas (thomas@lkg.dec.com) Notes: svn path=/cvs2svn/branches/MATT_THOMAS/; revision=21826