From ca66889cf74f569e755cecb5b807254e17dc20e6 Mon Sep 17 00:00:00 2001 From: Nick Hibma Date: Sat, 28 Aug 1999 20:10:46 +0000 Subject: [PATCH] Correct URL's and change ifdef to if defined (following rest of style in file) --- sys/dev/usb/ohci.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index c65d31d636c..d3d52816a5c 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 @@ -59,7 +59,7 @@ #include #include -#ifdef __FreeBSD__ +#if defined(__FreeBSD__) #include #include #endif