diff options
author | phk <phk@FreeBSD.org> | 1998-10-31 20:07:01 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1998-10-31 20:07:01 +0000 |
commit | ef1becbf8e39d56b501bb722279f9b3cddb9713b (patch) | |
tree | b392df5f916677ffead85d9adb5b2d60aab5eecd /sys/dev/hea | |
parent | 23ce0ead1d6a4116dd8022f9504a4632792c5149 (diff) | |
download | FreeBSD-src-ef1becbf8e39d56b501bb722279f9b3cddb9713b.zip FreeBSD-src-ef1becbf8e39d56b501bb722279f9b3cddb9713b.tar.gz |
Trivial stylish changes, mostly to silence gcc.
Reviewed by: Mike Spengler <mks@networkcs.com>
Submitted by: phk
Diffstat (limited to 'sys/dev/hea')
-rw-r--r-- | sys/dev/hea/eni.c | 10 | ||||
-rw-r--r-- | sys/dev/hea/eni_buffer.c | 10 | ||||
-rw-r--r-- | sys/dev/hea/eni_globals.c | 10 | ||||
-rw-r--r-- | sys/dev/hea/eni_if.c | 10 | ||||
-rw-r--r-- | sys/dev/hea/eni_init.c | 10 | ||||
-rw-r--r-- | sys/dev/hea/eni_intr.c | 10 | ||||
-rw-r--r-- | sys/dev/hea/eni_receive.c | 10 | ||||
-rw-r--r-- | sys/dev/hea/eni_transmit.c | 10 | ||||
-rw-r--r-- | sys/dev/hea/eni_vcm.c | 10 |
9 files changed, 45 insertions, 45 deletions
diff --git a/sys/dev/hea/eni.c b/sys/dev/hea/eni.c index 977ed9b..17427e9 100644 --- a/sys/dev/hea/eni.c +++ b/sys/dev/hea/eni.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni.c,v 1.1 1998/09/15 08:22:52 phk Exp $ + * @(#) $Id: eni.c,v 1.2 1998/09/17 09:34:58 phk Exp $ * */ @@ -35,16 +35,16 @@ * */ -#ifndef lint -static char *RCSid = "@(#) $Id: eni.c,v 1.1 1998/09/15 08:22:52 phk Exp $"; -#endif - #include <netatm/kern_include.h> #include <dev/hea/eni_stats.h> #include <dev/hea/eni.h> #include <dev/hea/eni_var.h> +#ifndef lint +__RCSID("@(#) $Id: eni.c,v 1.2 1998/09/17 09:34:58 phk Exp $"); +#endif + /* * Typedef local functions */ diff --git a/sys/dev/hea/eni_buffer.c b/sys/dev/hea/eni_buffer.c index 35d1b13..71d2eb9 100644 --- a/sys/dev/hea/eni_buffer.c +++ b/sys/dev/hea/eni_buffer.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_buffer.c,v 1.8 1998/08/26 23:28:53 mks Exp $ + * @(#) $Id: eni_buffer.c,v 1.1 1998/09/15 08:22:53 phk Exp $ * */ @@ -35,16 +35,16 @@ * */ -#ifndef lint -static char *RCSid = "@(#) $Id: eni_buffer.c,v 1.8 1998/08/26 23:28:53 mks Exp $"; -#endif - #include <netatm/kern_include.h> #include <dev/hea/eni_stats.h> #include <dev/hea/eni.h> #include <dev/hea/eni_var.h> +#ifndef lint +__RCSID("@(#) $Id: eni_buffer.c,v 1.1 1998/09/15 08:22:53 phk Exp $"); +#endif + static int eni_test_memory __P((Eni_unit *)); /* diff --git a/sys/dev/hea/eni_globals.c b/sys/dev/hea/eni_globals.c index a2a51fa..71253e2 100644 --- a/sys/dev/hea/eni_globals.c +++ b/sys/dev/hea/eni_globals.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_globals.c,v 1.2 1997/05/06 22:07:52 mks Exp $ + * @(#) $Id: eni_globals.c,v 1.1 1998/09/15 08:22:53 phk Exp $ * */ @@ -35,16 +35,16 @@ * */ -#ifndef lint -static char *RCSid = "@(#) $Id: eni_globals.c,v 1.2 1997/05/06 22:07:52 mks Exp $"; -#endif - #include <netatm/kern_include.h> #include <dev/hea/eni_stats.h> #include <dev/hea/eni.h> #include <dev/hea/eni_var.h> +#ifndef lint +__RCSID("@(#) $Id: eni_globals.c,v 1.1 1998/09/15 08:22:53 phk Exp $"); +#endif + /* * Device unit table */ diff --git a/sys/dev/hea/eni_if.c b/sys/dev/hea/eni_if.c index 41ffd48..d2c9ad6 100644 --- a/sys/dev/hea/eni_if.c +++ b/sys/dev/hea/eni_if.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_if.c,v 1.6 1998/08/26 23:28:53 mks Exp $ + * @(#) $Id: eni_if.c,v 1.1 1998/09/15 08:22:53 phk Exp $ * */ @@ -35,10 +35,6 @@ * */ -#ifndef lint -static char *RCSid = "@(#) $Id: eni_if.c,v 1.6 1998/08/26 23:28:53 mks Exp $"; -#endif - #include <netatm/kern_include.h> #include <dev/hea/eni_stats.h> @@ -46,6 +42,10 @@ static char *RCSid = "@(#) $Id: eni_if.c,v 1.6 1998/08/26 23:28:53 mks Exp $"; #include <dev/hea/eni_suni.h> #include <dev/hea/eni_var.h> +#ifndef lint +__RCSID("@(#) $Id: eni_if.c,v 1.1 1998/09/15 08:22:53 phk Exp $"); +#endif + static void eni_get_stats __P((Eni_unit *)); /* diff --git a/sys/dev/hea/eni_init.c b/sys/dev/hea/eni_init.c index d8106ab..5706c65 100644 --- a/sys/dev/hea/eni_init.c +++ b/sys/dev/hea/eni_init.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_init.c,v 1.6 1998/08/26 23:28:53 mks Exp $ + * @(#) $Id: eni_init.c,v 1.1 1998/09/15 08:22:53 phk Exp $ * */ @@ -35,16 +35,16 @@ * */ -#ifndef lint -static char *RCSid = "@(#) $Id: eni_init.c,v 1.6 1998/08/26 23:28:53 mks Exp $"; -#endif - #include <netatm/kern_include.h> #include <dev/hea/eni_stats.h> #include <dev/hea/eni.h> #include <dev/hea/eni_var.h> +#ifndef lint +__RCSID("@(#) $Id: eni_init.c,v 1.1 1998/09/15 08:22:53 phk Exp $"); +#endif + /* * Initialize adapter for PDU processing * diff --git a/sys/dev/hea/eni_intr.c b/sys/dev/hea/eni_intr.c index 44a6790..ccc0d6b 100644 --- a/sys/dev/hea/eni_intr.c +++ b/sys/dev/hea/eni_intr.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_intr.c,v 1.1 1998/09/15 08:22:53 phk Exp $ + * @(#) $Id: eni_intr.c,v 1.2 1998/09/17 09:34:58 phk Exp $ * */ @@ -35,10 +35,6 @@ * */ -#ifndef lint -static char *RCSid = "@(#) $Id: eni_intr.c,v 1.1 1998/09/15 08:22:53 phk Exp $"; -#endif - #include <netatm/kern_include.h> #include <dev/hea/eni_stats.h> @@ -46,6 +42,10 @@ static char *RCSid = "@(#) $Id: eni_intr.c,v 1.1 1998/09/15 08:22:53 phk Exp $"; #include <dev/hea/eni_suni.h> #include <dev/hea/eni_var.h> +#ifndef lint +__RCSID("@(#) $Id: eni_intr.c,v 1.2 1998/09/17 09:34:58 phk Exp $"); +#endif + static void eni_suni_intr __P((Eni_unit *)); /* diff --git a/sys/dev/hea/eni_receive.c b/sys/dev/hea/eni_receive.c index 94ce8c4..8e8be36 100644 --- a/sys/dev/hea/eni_receive.c +++ b/sys/dev/hea/eni_receive.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_receive.c,v 1.1 1998/09/15 08:22:53 phk Exp $ + * @(#) $Id: eni_receive.c,v 1.2 1998/09/17 09:34:58 phk Exp $ * */ @@ -35,16 +35,16 @@ * */ -#ifndef lint -static char *RCSid = "@(#) $Id: eni_receive.c,v 1.1 1998/09/15 08:22:53 phk Exp $"; -#endif - #include <netatm/kern_include.h> #include <dev/hea/eni_stats.h> #include <dev/hea/eni.h> #include <dev/hea/eni_var.h> +#ifndef lint +__RCSID("@(#) $Id: eni_receive.c,v 1.2 1998/09/17 09:34:58 phk Exp $"); +#endif + static void eni_recv_stack __P((void *, KBuffer *)); #ifdef DIAGNOSTIC diff --git a/sys/dev/hea/eni_transmit.c b/sys/dev/hea/eni_transmit.c index 8e9f977..2721709 100644 --- a/sys/dev/hea/eni_transmit.c +++ b/sys/dev/hea/eni_transmit.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_transmit.c,v 1.1 1998/09/15 08:22:53 phk Exp $ + * @(#) $Id: eni_transmit.c,v 1.2 1998/10/18 11:58:57 phk Exp $ * */ @@ -36,16 +36,16 @@ */ -#ifndef lint -static char *RCSid = "@(#) $Id: eni_transmit.c,v 1.1 1998/09/15 08:22:53 phk Exp $"; -#endif - #include <netatm/kern_include.h> #include <dev/hea/eni_stats.h> #include <dev/hea/eni.h> #include <dev/hea/eni_var.h> +#ifndef lint +__RCSID("@(#) $Id: eni_transmit.c,v 1.2 1998/10/18 11:58:57 phk Exp $"); +#endif + /* * Make a variable which controls printing of PDUs * as they travel through the driver. diff --git a/sys/dev/hea/eni_vcm.c b/sys/dev/hea/eni_vcm.c index 36c2a3d..a88fc01 100644 --- a/sys/dev/hea/eni_vcm.c +++ b/sys/dev/hea/eni_vcm.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: eni_vcm.c,v 1.8 1998/06/29 23:03:18 mks Exp $ + * @(#) $Id: eni_vcm.c,v 1.1 1998/09/15 08:22:54 phk Exp $ * */ @@ -36,16 +36,16 @@ */ -#ifndef lint -static char *RCSid = "@(#) $Id: eni_vcm.c,v 1.8 1998/06/29 23:03:18 mks Exp $"; -#endif - #include <netatm/kern_include.h> #include <dev/hea/eni_stats.h> #include <dev/hea/eni.h> #include <dev/hea/eni_var.h> +#ifndef lint +__RCSID("@(#) $Id: eni_vcm.c,v 1.1 1998/09/15 08:22:54 phk Exp $"); +#endif + /* * VCC Stack Instantiation |