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/usb/ehci_pci.c | |
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/usb/ehci_pci.c')
-rw-r--r-- | sys/dev/usb/ehci_pci.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/usb/ehci_pci.c b/sys/dev/usb/ehci_pci.c index 78ab401..00b2206 100644 --- a/sys/dev/usb/ehci_pci.c +++ b/sys/dev/usb/ehci_pci.c @@ -1,6 +1,4 @@ -/* $FreeBSD$ */ - -/* +/*- * Copyright (c) 1998 The NetBSD Foundation, Inc. * All rights reserved. * @@ -37,6 +35,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + /* * USB Enhanced Host Controller Driver, a.k.a. USB 2.0 controller. * @@ -44,7 +45,6 @@ * http://developer.intel.com/technology/usb/download/ehci-r10.pdf * and the USB 2.0 spec at * http://www.usb.org/developers/docs/usb_20.zip - * */ /* The low level controller code for EHCI has been split into @@ -52,7 +52,6 @@ * sharing of code between *BSD's */ - #include "opt_bus.h" #include <sys/param.h> |