diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2003-04-03 21:36:33 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-04-03 21:36:33 +0000 |
| commit | 8368cf8f75949c1d998e41a4b98fc8d6db4332de (patch) | |
| tree | 6ea4281e59072c649579ced46faa3cd8495197d4 /sys/dev/an | |
| parent | 85fcc22cf65a382feb2f9a4e8b37552cff057088 (diff) | |
Notes
Diffstat (limited to 'sys/dev/an')
| -rw-r--r-- | sys/dev/an/if_an.c | 10 | ||||
| -rw-r--r-- | sys/dev/an/if_an_isa.c | 11 | ||||
| -rw-r--r-- | sys/dev/an/if_an_pccard.c | 10 | ||||
| -rw-r--r-- | sys/dev/an/if_an_pci.c | 10 |
4 files changed, 13 insertions, 28 deletions
diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c index cf1ff5d832ee..f7e25a97e29c 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -28,8 +28,6 @@ * 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$ */ /* @@ -81,6 +79,9 @@ * driver handles all of the encapsulation/decapsulation itself. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include "opt_inet.h" #ifdef INET @@ -132,11 +133,6 @@ #include <dev/an/if_aironet_ieee.h> #include <dev/an/if_anreg.h> -#if !defined(lint) -static const char rcsid[] = - "$FreeBSD$"; -#endif - /* These are global because we need them in sys/pci/if_an_p.c. */ static void an_reset (struct an_softc *); static int an_init_mpi350_desc (struct an_softc *); diff --git a/sys/dev/an/if_an_isa.c b/sys/dev/an/if_an_isa.c index de05a8470079..3c23ac56f931 100644 --- a/sys/dev/an/if_an_isa.c +++ b/sys/dev/an/if_an_isa.c @@ -28,8 +28,6 @@ * 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$ */ /* @@ -40,7 +38,11 @@ * Columbia University, New York City */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include "opt_inet.h" + #ifdef INET #define ANCACHE #endif @@ -71,11 +73,6 @@ #include <dev/an/if_aironet_ieee.h> #include <dev/an/if_anreg.h> -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif - static struct isa_pnp_id an_ids[] = { { 0x0100ec06, "Aironet ISA4500/ISA4800" }, { 0, NULL } diff --git a/sys/dev/an/if_an_pccard.c b/sys/dev/an/if_an_pccard.c index 95a4c5b71bcb..d8c63918661c 100644 --- a/sys/dev/an/if_an_pccard.c +++ b/sys/dev/an/if_an_pccard.c @@ -28,8 +28,6 @@ * 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$ */ /* @@ -40,6 +38,9 @@ * Columbia University, New York City */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include "opt_inet.h" #ifdef INET @@ -70,11 +71,6 @@ #include <dev/pccard/pccarddevs.h> #include "card_if.h" -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif - #include <dev/an/if_aironet_ieee.h> #include <dev/an/if_anreg.h> diff --git a/sys/dev/an/if_an_pci.c b/sys/dev/an/if_an_pci.c index 466cf56e22ec..b3cbb4e16912 100644 --- a/sys/dev/an/if_an_pci.c +++ b/sys/dev/an/if_an_pci.c @@ -28,8 +28,6 @@ * 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$ */ /* @@ -52,6 +50,9 @@ * to go through their sales office to get it. Bleh. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include "opt_inet.h" #ifdef INET @@ -82,11 +83,6 @@ #include <pci/pcireg.h> #include <pci/pcivar.h> -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif - #include <dev/an/if_aironet_ieee.h> #include <dev/an/if_anreg.h> |
