diff options
author | obrien <obrien@FreeBSD.org> | 2003-08-24 17:55:58 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-08-24 17:55:58 +0000 |
commit | c63dab466c1f033b389bd6ea609f595059544212 (patch) | |
tree | 42e9f25e1409a6eae14564b2dd4cc743ddb1e89f /sys/dev/an | |
parent | fb9845a19e4bbed8172870281b730ff77f07b9be (diff) | |
download | FreeBSD-src-c63dab466c1f033b389bd6ea609f595059544212.zip FreeBSD-src-c63dab466c1f033b389bd6ea609f595059544212.tar.gz |
Use __FBSDID().
Also some minor style cleanups.
Diffstat (limited to 'sys/dev/an')
-rw-r--r-- | sys/dev/an/if_an.c | 7 | ||||
-rw-r--r-- | sys/dev/an/if_an_isa.c | 1 | ||||
-rw-r--r-- | sys/dev/an/if_an_pccard.c | 1 | ||||
-rw-r--r-- | sys/dev/an/if_an_pci.c | 8 |
4 files changed, 7 insertions, 10 deletions
diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c index 5636d0e..cdf85e9 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -29,7 +29,6 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ - /* * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD. * @@ -38,6 +37,9 @@ * Columbia University, New York City */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* * The Aironet 4500/4800 series cards come in PCMCIA, ISA and PCI form. * This driver supports all three device types (PCI devices are supported @@ -79,9 +81,6 @@ * driver handles all of the encapsulation/decapsulation itself. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include "opt_inet.h" #ifdef INET diff --git a/sys/dev/an/if_an_isa.c b/sys/dev/an/if_an_isa.c index f4ee9be..8b0efd5 100644 --- a/sys/dev/an/if_an_isa.c +++ b/sys/dev/an/if_an_isa.c @@ -29,7 +29,6 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ - /* * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD. * diff --git a/sys/dev/an/if_an_pccard.c b/sys/dev/an/if_an_pccard.c index 0b3bc33..113b046 100644 --- a/sys/dev/an/if_an_pccard.c +++ b/sys/dev/an/if_an_pccard.c @@ -29,7 +29,6 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ - /* * Aironet 4500/4800 802.11 PCMCIA/ISA/PCI driver for FreeBSD. * diff --git a/sys/dev/an/if_an_pci.c b/sys/dev/an/if_an_pci.c index 5fe7901..7354e94 100644 --- a/sys/dev/an/if_an_pci.c +++ b/sys/dev/an/if_an_pci.c @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 1997, 1998, 1999 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. * @@ -30,6 +30,9 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* * This is a PCI shim for the Aironet PC4500/4800 wireless network * driver. Aironet makes PCMCIA, ISA and PCI versions of these devices, @@ -50,9 +53,6 @@ * to go through their sales office to get it. Bleh. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include "opt_inet.h" #ifdef INET |