diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-05-28 17:36:36 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-05-28 17:36:36 +0000 |
commit | af6fb4f3d2a2950c2a2c95bc3148ee16510149de (patch) | |
tree | 3036722a60a7a9ddd5122172e56736f3e128664b /sys/dev/usb/controller/musb_otg.h | |
parent | d691011026fb63bdede5854aaa7547c7c019cd38 (diff) | |
download | FreeBSD-src-af6fb4f3d2a2950c2a2c95bc3148ee16510149de.zip FreeBSD-src-af6fb4f3d2a2950c2a2c95bc3148ee16510149de.tar.gz |
s/usb2_/usb_/ on all C structs for the USB stack.
Diffstat (limited to 'sys/dev/usb/controller/musb_otg.h')
-rw-r--r-- | sys/dev/usb/controller/musb_otg.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/usb/controller/musb_otg.h b/sys/dev/usb/controller/musb_otg.h index f687921..7bba73f 100644 --- a/sys/dev/usb/controller/musb_otg.h +++ b/sys/dev/usb/controller/musb_otg.h @@ -305,7 +305,7 @@ struct musbotg_dma { struct musbotg_td { struct musbotg_td *obj_next; musbotg_cmd_t *func; - struct usb2_page_cache *pc; + struct usb_page_cache *pc; uint32_t offset; uint32_t remainder; uint16_t max_frame_size; /* packet_size * mult */ @@ -320,7 +320,7 @@ struct musbotg_td { struct musbotg_std_temp { musbotg_cmd_t *func; - struct usb2_page_cache *pc; + struct usb_page_cache *pc; struct musbotg_td *td; struct musbotg_td *td_next; uint32_t len; @@ -336,14 +336,14 @@ struct musbotg_std_temp { }; struct musbotg_config_desc { - struct usb2_config_descriptor confd; - struct usb2_interface_descriptor ifcd; - struct usb2_endpoint_descriptor endpd; + struct usb_config_descriptor confd; + struct usb_interface_descriptor ifcd; + struct usb_endpoint_descriptor endpd; } __packed; union musbotg_hub_temp { uWord wValue; - struct usb2_port_status ps; + struct usb_port_status ps; }; struct musbotg_flags { @@ -362,11 +362,11 @@ struct musbotg_flags { }; struct musbotg_softc { - struct usb2_bus sc_bus; + struct usb_bus sc_bus; union musbotg_hub_temp sc_hub_temp; - struct usb2_hw_ep_profile sc_hw_ep_profile[16]; + struct usb_hw_ep_profile sc_hw_ep_profile[16]; - struct usb2_device *sc_devices[MUSB2_MAX_DEVICES]; + struct usb_device *sc_devices[MUSB2_MAX_DEVICES]; struct resource *sc_io_res; struct resource *sc_irq_res; void *sc_intr_hdl; |