diff options
author | sam <sam@FreeBSD.org> | 2008-12-13 01:21:37 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2008-12-13 01:21:37 +0000 |
commit | 9c1fcf4ecd098afcbade2f395ab1fadbbe5b4b76 (patch) | |
tree | 644eaeb5764c12410edfb611ec530ca2d197a365 /sys/dev/usb/usbdi.h | |
parent | a52a9748d1f9588ffe250473b5be61674d1f1cc6 (diff) | |
download | FreeBSD-src-9c1fcf4ecd098afcbade2f395ab1fadbbe5b4b76.zip FreeBSD-src-9c1fcf4ecd098afcbade2f395ab1fadbbe5b4b76.tar.gz |
Merge WIP from p4:
o recognize ixp435 cpu
o change memory layout for for ixp4xx to not assume memory is aliases
to 0x10000000 (Cambria/ixp435 memory starts at zero)
o handle 64 irqs for ixp435
o dual EHCI USB 2.0 controller integral to ixp435
o overhaul NPE code for ixp435 and better MAC+MII naming
o updated NPE firmware (including NPE-A image for ixp435/ixp465)
o Gateworks Cambria board support:
- IDE compact flash
- MCU
- front panel LED on i2c bus
- Octal LED latch
Sanity-tested with NFS-root on Avila and Cambria boards. Requires
pending boot2 mods for CF-boot on Cambria.
Diffstat (limited to 'sys/dev/usb/usbdi.h')
-rw-r--r-- | sys/dev/usb/usbdi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/usbdi.h b/sys/dev/usb/usbdi.h index d5bb035..ef59039 100644 --- a/sys/dev/usb/usbdi.h +++ b/sys/dev/usb/usbdi.h @@ -256,7 +256,8 @@ struct usb_attach_arg { #define USBD_SHOW_DEVICE_CLASS 0x1 #define USBD_SHOW_INTERFACE_CLASS 0x2 -int usbd_driver_load(module_t mod, int what, void *arg); +struct module; +int usbd_driver_load(struct module *mod, int what, void *arg); static inline int usb_get_port(device_t dev) |