Changeset a372663 in mainline for uspace/drv


Ignore:
Timestamp:
2011-03-21T13:53:11Z (15 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3954a63b
Parents:
8a951ca
Message:

Rename usb_endpoint_pipe_t ⇒ usb_pipe_t

No change in functionality.

Location:
uspace/drv
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbhid/hiddev.h

    r8a951ca ra372663  
    6868        usb_device_connection_t wire;
    6969        /** USB pipe corresponding to the default Control endpoint. */
    70         usb_endpoint_pipe_t ctrl_pipe;
     70        usb_pipe_t ctrl_pipe;
    7171        /** USB pipe corresponding to the Interrupt In (polling) pipe. */
    72         usb_endpoint_pipe_t poll_pipe;
     72        usb_pipe_t poll_pipe;
    7373       
    7474        /** Polling interval retreived from the Interface descriptor. */
  • uspace/drv/usbhub/usbhub.c

    r8a951ca ra372663  
    354354        }
    355355        //create connection to device
    356         usb_endpoint_pipe_t new_device_pipe;
     356        usb_pipe_t new_device_pipe;
    357357        usb_device_connection_t new_device_connection;
    358358        usb_device_connection_initialize_on_default_address(
     
    488488        usb_log_debug("interrupt at port %d\n", port);
    489489        //determine type of change
    490         usb_endpoint_pipe_t *pipe = hub->control_pipe;
     490        usb_pipe_t *pipe = hub->control_pipe;
    491491       
    492492        int opResult;
  • uspace/drv/usbhub/usbhub.h

    r8a951ca ra372663  
    5858/* Hub endpoints. */
    5959/*typedef struct {
    60         usb_endpoint_pipe_t control;
    61         usb_endpoint_pipe_t status_change;
     60        usb_pipe_t control;
     61        usb_pipe_t status_change;
    6262} usb_hub_endpoints_t;
    6363*/
     
    8888         * searched again and again for the 'right pipe'.
    8989         */
    90         usb_endpoint_pipe_t * status_change_pipe;
     90        usb_pipe_t * status_change_pipe;
    9191
    9292        /** convenience pointer to control pipe
     
    9696         * searched again and again for the 'right pipe'.
    9797         */
    98         usb_endpoint_pipe_t * control_pipe;
     98        usb_pipe_t * control_pipe;
    9999
    100100        /** generic usb device data*/
  • uspace/drv/usbhub/usbhub_private.h

    r8a951ca ra372663  
    9595 * @return Operation result
    9696 */
    97 static inline int usb_hub_clear_port_feature(usb_endpoint_pipe_t *pipe,
     97static inline int usb_hub_clear_port_feature(usb_pipe_t *pipe,
    9898    int port_index,
    9999    usb_hub_class_feature_t feature) {
  • uspace/drv/usbmid/usbmid.h

    r8a951ca ra372663  
    5252        usb_device_connection_t wire;
    5353        /** Default control pipe. */
    54         usb_endpoint_pipe_t ctrl_pipe;
     54        usb_pipe_t ctrl_pipe;
    5555} usbmid_device_t;
    5656
Note: See TracChangeset for help on using the changeset viewer.