Correct URL's and change ifdef to if defined (following rest of style in

file)
This commit is contained in:
Nick Hibma 1999-08-28 20:10:46 +00:00
parent 805bb37eb5
commit ca66889cf7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50525

View File

@ -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