diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2003-08-24 17:55:58 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-08-24 17:55:58 +0000 |
| commit | aad970f1fee9a2a3e5a0f880be9b87c6193b3bd1 (patch) | |
| tree | 42e9f25e1409a6eae14564b2dd4cc743ddb1e89f /sys/dev/awi | |
| parent | 0e9a61d26066fec3c8abc5e5b36039b7ed2db563 (diff) | |
Notes
Diffstat (limited to 'sys/dev/awi')
| -rw-r--r-- | sys/dev/awi/am79c930.c | 5 | ||||
| -rw-r--r-- | sys/dev/awi/awi.c | 25 | ||||
| -rw-r--r-- | sys/dev/awi/awi_wep.c | 5 | ||||
| -rw-r--r-- | sys/dev/awi/awi_wicfg.c | 5 | ||||
| -rw-r--r-- | sys/dev/awi/if_awi_pccard.c | 5 |
5 files changed, 22 insertions, 23 deletions
diff --git a/sys/dev/awi/am79c930.c b/sys/dev/awi/am79c930.c index 9a94be4c65a0..3bf5c9e29bda 100644 --- a/sys/dev/awi/am79c930.c +++ b/sys/dev/awi/am79c930.c @@ -1,6 +1,4 @@ /* $NetBSD: am79c930.c,v 1.5 2000/03/23 13:57:58 onoe Exp $ */ -/* $FreeBSD$ */ - /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. * All rights reserved. @@ -37,6 +35,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* * Am79c930 chip driver. * diff --git a/sys/dev/awi/awi.c b/sys/dev/awi/awi.c index 5326c8a813e6..bf1e7b5234f6 100644 --- a/sys/dev/awi/awi.c +++ b/sys/dev/awi/awi.c @@ -1,6 +1,4 @@ /* $NetBSD: awi.c,v 1.26 2000/07/21 04:48:55 onoe Exp $ */ -/* $FreeBSD$ */ - /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. * All rights reserved. @@ -36,13 +34,20 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* - * Driver for AMD 802.11 firmware. + * Driver for AMD 802.11 PCnetMobile firmware. * Uses am79c930 chip driver to talk to firmware running on the am79c930. - * * More-or-less a generic ethernet-like if driver, with 802.11 gorp added. + * + * The initial version of the driver was written by + * Bill Sommerfeld <sommerfeld@netbsd.org>. + * Then the driver module completely rewritten to support cards with DS phy + * and to support adhoc mode by Atsushi Onoe <onoe@netbsd.org> */ - /* * todo: * - flush tx queue on resynch. @@ -75,16 +80,6 @@ * - common 802.11 media layer. */ -/* - * Driver for AMD 802.11 PCnetMobile firmware. - * Uses am79c930 chip driver to talk to firmware running on the am79c930. - * - * The initial version of the driver was written by - * Bill Sommerfeld <sommerfeld@netbsd.org>. - * Then the driver module completely rewritten to support cards with DS phy - * and to support adhoc mode by Atsushi Onoe <onoe@netbsd.org> - */ - #include "opt_inet.h" #include <sys/param.h> diff --git a/sys/dev/awi/awi_wep.c b/sys/dev/awi/awi_wep.c index c5029f7c027e..df074f5f3e1f 100644 --- a/sys/dev/awi/awi_wep.c +++ b/sys/dev/awi/awi_wep.c @@ -1,6 +1,4 @@ /* $NetBSD: awi_wep.c,v 1.4 2000/08/14 11:28:03 onoe Exp $ */ -/* $FreeBSD$ */ - /* * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. @@ -37,6 +35,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* * WEP support framework for the awi driver. * diff --git a/sys/dev/awi/awi_wicfg.c b/sys/dev/awi/awi_wicfg.c index 363fcbfa1a5e..72b7c0ed35d4 100644 --- a/sys/dev/awi/awi_wicfg.c +++ b/sys/dev/awi/awi_wicfg.c @@ -1,6 +1,4 @@ /* $NetBSD: awi_wicfg.c,v 1.3 2000/07/06 17:22:25 onoe Exp $ */ -/* $FreeBSD$ */ - /* * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. @@ -37,6 +35,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* * WaveLAN compatible configuration support routines for the awi driver. */ diff --git a/sys/dev/awi/if_awi_pccard.c b/sys/dev/awi/if_awi_pccard.c index 7c69af389525..1a542e468629 100644 --- a/sys/dev/awi/if_awi_pccard.c +++ b/sys/dev/awi/if_awi_pccard.c @@ -21,10 +21,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> |
