summaryrefslogtreecommitdiffstats
path: root/sys/dev/awi
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-08-24 17:55:58 +0000
committerobrien <obrien@FreeBSD.org>2003-08-24 17:55:58 +0000
commitc63dab466c1f033b389bd6ea609f595059544212 (patch)
tree42e9f25e1409a6eae14564b2dd4cc743ddb1e89f /sys/dev/awi
parentfb9845a19e4bbed8172870281b730ff77f07b9be (diff)
downloadFreeBSD-src-c63dab466c1f033b389bd6ea609f595059544212.zip
FreeBSD-src-c63dab466c1f033b389bd6ea609f595059544212.tar.gz
Use __FBSDID().
Also some minor style cleanups.
Diffstat (limited to 'sys/dev/awi')
-rw-r--r--sys/dev/awi/am79c930.c5
-rw-r--r--sys/dev/awi/awi.c25
-rw-r--r--sys/dev/awi/awi_wep.c5
-rw-r--r--sys/dev/awi/awi_wicfg.c5
-rw-r--r--sys/dev/awi/if_awi_pccard.c5
5 files changed, 22 insertions, 23 deletions
diff --git a/sys/dev/awi/am79c930.c b/sys/dev/awi/am79c930.c
index 9a94be4..3bf5c9e 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 5326c8a..bf1e7b5 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 c5029f7..df074f5 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 363fcbf..72b7c0e 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 7c69af3..1a542e4 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>
OpenPOWER on IntegriCloud