aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mii
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-08-24 17:55:58 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-08-24 17:55:58 +0000
commitaad970f1fee9a2a3e5a0f880be9b87c6193b3bd1 (patch)
tree42e9f25e1409a6eae14564b2dd4cc743ddb1e89f /sys/dev/mii
parent0e9a61d26066fec3c8abc5e5b36039b7ed2db563 (diff)
downloadsrc-aad970f1fee9a2a3e5a0f880be9b87c6193b3bd1.tar.gz
src-aad970f1fee9a2a3e5a0f880be9b87c6193b3bd1.zip
Use __FBSDID().
Also some minor style cleanups.
Notes
Notes: svn path=/head/; revision=119418
Diffstat (limited to 'sys/dev/mii')
-rw-r--r--sys/dev/mii/acphy.c3
-rw-r--r--sys/dev/mii/amphy.c3
-rw-r--r--sys/dev/mii/bmtphy.c4
-rw-r--r--sys/dev/mii/brgphy.c3
-rw-r--r--sys/dev/mii/dcphy.c3
-rw-r--r--sys/dev/mii/e1000phy.c4
-rw-r--r--sys/dev/mii/exphy.c3
-rw-r--r--sys/dev/mii/inphy.c4
-rw-r--r--sys/dev/mii/lxtphy.c3
-rw-r--r--sys/dev/mii/mii.c3
-rw-r--r--sys/dev/mii/mii_physubr.c3
-rw-r--r--sys/dev/mii/mlphy.c4
-rw-r--r--sys/dev/mii/nsgphy.c3
-rw-r--r--sys/dev/mii/nsphy.c3
-rw-r--r--sys/dev/mii/pnaphy.c3
-rw-r--r--sys/dev/mii/pnphy.c3
-rw-r--r--sys/dev/mii/qsphy.c3
-rw-r--r--sys/dev/mii/rlphy.c3
-rw-r--r--sys/dev/mii/ruephy.c4
-rw-r--r--sys/dev/mii/tdkphy.c3
-rw-r--r--sys/dev/mii/tlphy.c3
-rw-r--r--sys/dev/mii/ukphy.c3
-rw-r--r--sys/dev/mii/ukphy_subr.c3
-rw-r--r--sys/dev/mii/xmphy.c3
24 files changed, 72 insertions, 5 deletions
diff --git a/sys/dev/mii/acphy.c b/sys/dev/mii/acphy.c
index f4ab950b0942..47105ff7b38a 100644
--- a/sys/dev/mii/acphy.c
+++ b/sys/dev/mii/acphy.c
@@ -34,6 +34,9 @@
* 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$");
/*
* Copyright (c) 1997 Manuel Bouyer. All rights reserved.
diff --git a/sys/dev/mii/amphy.c b/sys/dev/mii/amphy.c
index f3e016652d10..e63d050be132 100644
--- a/sys/dev/mii/amphy.c
+++ b/sys/dev/mii/amphy.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* driver for AMD AM79c873 PHYs
* This driver also works for the Davicom DM9101 PHY, which appears to
diff --git a/sys/dev/mii/bmtphy.c b/sys/dev/mii/bmtphy.c
index 5fa82daf505e..988793e63848 100644
--- a/sys/dev/mii/bmtphy.c
+++ b/sys/dev/mii/bmtphy.c
@@ -35,6 +35,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Copyright (c) 1997 Manuel Bouyer. All rights reserved.
*
@@ -65,7 +68,6 @@
*
* from: NetBSD: bmtphy.c,v 1.8 2002/07/03 06:25:50 simonb Exp
*
- * $FreeBSD$
*/
/*
diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c
index fa19b757e9c2..12cf07308669 100644
--- a/sys/dev/mii/brgphy.c
+++ b/sys/dev/mii/brgphy.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Driver for the Broadcom BCR5400 1000baseTX PHY. Speed is always
* 1000mbps; all we need to negotiate here is full or half duplex.
diff --git a/sys/dev/mii/dcphy.c b/sys/dev/mii/dcphy.c
index 829100022530..4c930e504c3a 100644
--- a/sys/dev/mii/dcphy.c
+++ b/sys/dev/mii/dcphy.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Pseudo-driver for internal NWAY support on DEC 21143 and workalike
* controllers. Technically we're abusing the miibus code to handle
diff --git a/sys/dev/mii/e1000phy.c b/sys/dev/mii/e1000phy.c
index 5a0d694bc0a1..19759866d55d 100644
--- a/sys/dev/mii/e1000phy.c
+++ b/sys/dev/mii/e1000phy.c
@@ -1,5 +1,7 @@
-/* $FreeBSD$ */
/*
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
* Principal Author: Parag Patel
* Copyright (c) 2001
* All rights reserved.
diff --git a/sys/dev/mii/exphy.c b/sys/dev/mii/exphy.c
index d837b809a3ae..97c97cd8e20c 100644
--- a/sys/dev/mii/exphy.c
+++ b/sys/dev/mii/exphy.c
@@ -37,6 +37,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Copyright (c) 1997 Manuel Bouyer. All rights reserved.
*
diff --git a/sys/dev/mii/inphy.c b/sys/dev/mii/inphy.c
index 54cab48cbee3..3aa6f16de9e4 100644
--- a/sys/dev/mii/inphy.c
+++ b/sys/dev/mii/inphy.c
@@ -26,9 +26,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* driver for Intel 82553 and 82555 PHYs
*/
diff --git a/sys/dev/mii/lxtphy.c b/sys/dev/mii/lxtphy.c
index 4aa98aff5ee7..57fbe160f6a3 100644
--- a/sys/dev/mii/lxtphy.c
+++ b/sys/dev/mii/lxtphy.c
@@ -37,6 +37,9 @@
* 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$");
/*
* Copyright (c) 1997 Manuel Bouyer. All rights reserved.
diff --git a/sys/dev/mii/mii.c b/sys/dev/mii/mii.c
index 50aa0d98b0be..4771cc541e16 100644
--- a/sys/dev/mii/mii.c
+++ b/sys/dev/mii/mii.c
@@ -37,6 +37,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* MII bus layer, glues MII-capable network interface drivers to sharable
* PHY drivers. This exports an interface compatible with BSD/OS 3.0's,
diff --git a/sys/dev/mii/mii_physubr.c b/sys/dev/mii/mii_physubr.c
index f90a48686170..96e481c35b9f 100644
--- a/sys/dev/mii/mii_physubr.c
+++ b/sys/dev/mii/mii_physubr.c
@@ -37,6 +37,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Subroutines common to all PHYs.
*/
diff --git a/sys/dev/mii/mlphy.c b/sys/dev/mii/mlphy.c
index f158a970145a..744d3c371012 100644
--- a/sys/dev/mii/mlphy.c
+++ b/sys/dev/mii/mlphy.c
@@ -29,9 +29,11 @@
* 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$");
+
/*
* driver for Micro Linear 6692 PHYs
*
diff --git a/sys/dev/mii/nsgphy.c b/sys/dev/mii/nsgphy.c
index 81d7cee330d5..0cd61330a448 100644
--- a/sys/dev/mii/nsgphy.c
+++ b/sys/dev/mii/nsgphy.c
@@ -37,6 +37,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Driver for the National Semiconductor DP83891 and DP83861
* 10/100/1000 PHYs.
diff --git a/sys/dev/mii/nsphy.c b/sys/dev/mii/nsphy.c
index 15de5b4d1670..85a1d8fd3bda 100644
--- a/sys/dev/mii/nsphy.c
+++ b/sys/dev/mii/nsphy.c
@@ -37,6 +37,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Copyright (c) 1997 Manuel Bouyer. All rights reserved.
*
diff --git a/sys/dev/mii/pnaphy.c b/sys/dev/mii/pnaphy.c
index 5f34f9c09e71..f952574992e1 100644
--- a/sys/dev/mii/pnaphy.c
+++ b/sys/dev/mii/pnaphy.c
@@ -31,6 +31,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* driver for homePNA PHYs
* This is really just a stub that allows us to identify homePNA-based
diff --git a/sys/dev/mii/pnphy.c b/sys/dev/mii/pnphy.c
index ad9ad4f44be0..4cfed0310771 100644
--- a/sys/dev/mii/pnphy.c
+++ b/sys/dev/mii/pnphy.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Pseudo-driver for media selection on the Lite-On PNIC 82c168
* chip. The NWAY support on this chip is horribly broken, so we
diff --git a/sys/dev/mii/qsphy.c b/sys/dev/mii/qsphy.c
index 514dabdadc5b..2c2bd6ade702 100644
--- a/sys/dev/mii/qsphy.c
+++ b/sys/dev/mii/qsphy.c
@@ -1,4 +1,7 @@
/* OpenBSD: qsphy.c,v 1.6 2000/08/26 20:04:18 nate Exp */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
/* NetBSD: qsphy.c,v 1.19 2000/02/02 23:34:57 thorpej Exp */
/*-
diff --git a/sys/dev/mii/rlphy.c b/sys/dev/mii/rlphy.c
index 11abac18a563..d687992f31c3 100644
--- a/sys/dev/mii/rlphy.c
+++ b/sys/dev/mii/rlphy.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* driver for RealTek 8139 internal PHYs
*/
diff --git a/sys/dev/mii/ruephy.c b/sys/dev/mii/ruephy.c
index 5e876aff6cd8..f2dbc1602f66 100644
--- a/sys/dev/mii/ruephy.c
+++ b/sys/dev/mii/ruephy.c
@@ -23,9 +23,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* driver for RealTek RTL8150 internal PHY
*/
diff --git a/sys/dev/mii/tdkphy.c b/sys/dev/mii/tdkphy.c
index 8b45eefa0471..b21311ffd84e 100644
--- a/sys/dev/mii/tdkphy.c
+++ b/sys/dev/mii/tdkphy.c
@@ -26,6 +26,9 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Driver for the TDK 78Q2120 MII
*
diff --git a/sys/dev/mii/tlphy.c b/sys/dev/mii/tlphy.c
index 9c35a5578ee6..ca9f854cfcc0 100644
--- a/sys/dev/mii/tlphy.c
+++ b/sys/dev/mii/tlphy.c
@@ -37,6 +37,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Copyright (c) 1997 Manuel Bouyer. All rights reserved.
*
diff --git a/sys/dev/mii/ukphy.c b/sys/dev/mii/ukphy.c
index 12e5faf0e818..68403ee4aaa5 100644
--- a/sys/dev/mii/ukphy.c
+++ b/sys/dev/mii/ukphy.c
@@ -37,6 +37,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Copyright (c) 1997 Manuel Bouyer. All rights reserved.
*
diff --git a/sys/dev/mii/ukphy_subr.c b/sys/dev/mii/ukphy_subr.c
index 5e024305396f..ca26b95d0368 100644
--- a/sys/dev/mii/ukphy_subr.c
+++ b/sys/dev/mii/ukphy_subr.c
@@ -37,6 +37,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Subroutines shared by the ukphy driver and other PHY drivers.
*/
diff --git a/sys/dev/mii/xmphy.c b/sys/dev/mii/xmphy.c
index 669f17579511..2a1ee8060174 100644
--- a/sys/dev/mii/xmphy.c
+++ b/sys/dev/mii/xmphy.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* driver for the XaQti XMAC II's internal PHY. This is sort of
* like a 10/100 PHY, except the only thing we're really autoselecting