Changes in uspace/drv/nic/ar9271/ath_usb.h [b7fd2a0:5a6cc679] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/ar9271/ath_usb.h
rb7fd2a0 r5a6cc679 45 45 typedef struct { 46 46 /** USB pipes indexes */ 47 int input_ctrl_pipe_number;48 int output_ctrl_pipe_number;49 int input_data_pipe_number;50 int output_data_pipe_number;47 usb_pipe_t *input_ctrl_pipe; 48 usb_pipe_t *output_ctrl_pipe; 49 usb_pipe_t *input_data_pipe; 50 usb_pipe_t *output_data_pipe; 51 51 52 52 /** Pointer to connected USB device. */ … … 59 59 } ath_usb_data_header_t; 60 60 61 extern errno_t ath_usb_init(ath_t *, usb_device_t * );61 extern errno_t ath_usb_init(ath_t *, usb_device_t *, const usb_endpoint_description_t **endpoints); 62 62 63 63 #endif /* ATHEROS_ATH_USB_H */
Note:
See TracChangeset
for help on using the changeset viewer.