diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/cy/cy.c | 4 | ||||
-rw-r--r-- | sys/dev/cy/cy_isa.c | 4 | ||||
-rw-r--r-- | sys/dev/dgb/dgb.c | 4 | ||||
-rw-r--r-- | sys/dev/rp/rp.c | 2 | ||||
-rw-r--r-- | sys/dev/si/si.c | 4 | ||||
-rw-r--r-- | sys/dev/sio/sio.c | 3 | ||||
-rw-r--r-- | sys/dev/snp/snp.c | 2 |
7 files changed, 18 insertions, 5 deletions
diff --git a/sys/dev/cy/cy.c b/sys/dev/cy/cy.c index 69202e9..001b3f2 100644 --- a/sys/dev/cy/cy.c +++ b/sys/dev/cy/cy.c @@ -27,9 +27,11 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cy.c,v 1.56 1997/11/10 15:46:33 bde Exp $ + * $Id: cy.c,v 1.57 1997/12/06 13:22:26 bde Exp $ */ +#include "opt_compat.h" + #include "cy.h" /* diff --git a/sys/dev/cy/cy_isa.c b/sys/dev/cy/cy_isa.c index 69202e9..001b3f2 100644 --- a/sys/dev/cy/cy_isa.c +++ b/sys/dev/cy/cy_isa.c @@ -27,9 +27,11 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cy.c,v 1.56 1997/11/10 15:46:33 bde Exp $ + * $Id: cy.c,v 1.57 1997/12/06 13:22:26 bde Exp $ */ +#include "opt_compat.h" + #include "cy.h" /* diff --git a/sys/dev/dgb/dgb.c b/sys/dev/dgb/dgb.c index da023aa..1ae4754 100644 --- a/sys/dev/dgb/dgb.c +++ b/sys/dev/dgb/dgb.c @@ -1,5 +1,5 @@ /*- - * dgb.c $Id: dgb.c,v 1.28 1997/09/14 03:19:00 peter Exp $ + * dgb.c $Id: dgb.c,v 1.29 1997/12/06 13:22:03 bde Exp $ * * Digiboard driver. * @@ -27,6 +27,8 @@ * David L. Nugent <davidn@blaze.net.au> */ +#include "opt_compat.h" + #include "dgb.h" #if NDGB > 0 diff --git a/sys/dev/rp/rp.c b/sys/dev/rp/rp.c index 3a0507a..f13233c 100644 --- a/sys/dev/rp/rp.c +++ b/sys/dev/rp/rp.c @@ -34,6 +34,8 @@ * rp.c - for RocketPort FreeBSD */ +#include "opt_compat.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/fcntl.h> diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c index 1c72960..f71871e 100644 --- a/sys/dev/si/si.c +++ b/sys/dev/si/si.c @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: si.c,v 1.61 1997/09/21 21:41:37 gibbs Exp $ + * $Id: si.c,v 1.62 1997/12/06 13:22:56 bde Exp $ */ #ifndef lint @@ -39,6 +39,8 @@ static const char si_copyright1[] = "@(#) (C) Specialix International, 1990,199 si_copyright3[] = "@(#) (C) Peter Wemm 1995"; #endif /* not lint */ +#include "opt_compat.h" + #include <sys/param.h> #include <sys/systm.h> #if defined(COMPAT_43) || defined(COMPAT_SUNOS) diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index a0763da..145239a 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -31,10 +31,11 @@ * SUCH DAMAGE. * * from: @(#)com.c 7.5 (Berkeley) 5/16/91 - * $Id: sio.c,v 1.189 1997/11/20 15:48:41 nate Exp $ + * $Id: sio.c,v 1.190 1997/12/06 13:23:04 bde Exp $ */ #include "opt_comconsole.h" +#include "opt_compat.h" #include "opt_ddb.h" #include "opt_sio.h" #include "sio.h" diff --git a/sys/dev/snp/snp.c b/sys/dev/snp/snp.c index 738c871..55db19f 100644 --- a/sys/dev/snp/snp.c +++ b/sys/dev/snp/snp.c @@ -17,6 +17,8 @@ #if NSNP > 0 +#include "opt_compat.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/filio.h> |