summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorn_hibma <n_hibma@FreeBSD.org>1999-08-28 20:10:46 +0000
committern_hibma <n_hibma@FreeBSD.org>1999-08-28 20:10:46 +0000
commit4ded1b999f5fbc62a3fd44e19d8cec51e81838bc (patch)
tree80033607f9b7ddfda7702a09d6ba6e5f55eb855b
parent00a145f4773db0c60d7183a481ba28094024c243 (diff)
downloadFreeBSD-src-4ded1b999f5fbc62a3fd44e19d8cec51e81838bc.zip
FreeBSD-src-4ded1b999f5fbc62a3fd44e19d8cec51e81838bc.tar.gz
Correct URL's and change ifdef to if defined (following rest of style in
file)
-rw-r--r--sys/dev/usb/ohci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index c65d31d..d3d5281 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -41,8 +41,8 @@
/*
* USB Open Host Controller driver.
*
- * OHCI spec: http://www.intel.com/design/usb/ohci11d.pdf
- * USB spec: http://www.teleport.com/cgi-bin/mailmerge.cgi/~usb/cgiform.tpl
+ * OHCI spec: ftp://ftp.compaq.com/pub/supportinformation/papers/hcir1_0a.exe
+ * USB spec: http://www.usb.org/developers/data/usb11.pdf
*/
#include <sys/param.h>
@@ -59,7 +59,7 @@
#include <sys/queue.h>
#include <sys/select.h>
-#ifdef __FreeBSD__
+#if defined(__FreeBSD__)
#include <machine/bus_pio.h>
#include <machine/bus_memio.h>
#endif
OpenPOWER on IntegriCloud