staging: octeon-usb: cvmx_usb_pipe_flags_t -> enum cvmx_usb_pipe_flags
Replace cvmx_usb_pipe_flags_t with enum cvmx_usb_pipe_flags. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1c25754815
commit
3f937c51b4
2 changed files with 19 additions and 12 deletions
|
@ -150,7 +150,7 @@ typedef struct cvmx_usb_pipe {
|
||||||
cvmx_usb_transaction_t *tail; /**< The last pending transaction */
|
cvmx_usb_transaction_t *tail; /**< The last pending transaction */
|
||||||
uint64_t interval; /**< For periodic pipes, the interval between packets in frames */
|
uint64_t interval; /**< For periodic pipes, the interval between packets in frames */
|
||||||
uint64_t next_tx_frame; /**< The next frame this pipe is allowed to transmit on */
|
uint64_t next_tx_frame; /**< The next frame this pipe is allowed to transmit on */
|
||||||
cvmx_usb_pipe_flags_t flags; /**< State flags for this pipe */
|
enum cvmx_usb_pipe_flags flags; /**< State flags for this pipe */
|
||||||
enum cvmx_usb_speed device_speed; /**< Speed of device connected to this pipe */
|
enum cvmx_usb_speed device_speed; /**< Speed of device connected to this pipe */
|
||||||
enum cvmx_usb_transfer transfer_type; /**< Type of transaction supported by this pipe */
|
enum cvmx_usb_transfer transfer_type; /**< Type of transaction supported by this pipe */
|
||||||
enum cvmx_usb_direction transfer_dir; /**< IN or OUT. Ignored for Control */
|
enum cvmx_usb_direction transfer_dir; /**< IN or OUT. Ignored for Control */
|
||||||
|
@ -1053,7 +1053,7 @@ static inline int __cvmx_usb_get_pipe_handle(cvmx_usb_internal_state_t *usb,
|
||||||
* @state: USB device state populated by
|
* @state: USB device state populated by
|
||||||
* cvmx_usb_initialize().
|
* cvmx_usb_initialize().
|
||||||
* @flags: Optional pipe flags defined in
|
* @flags: Optional pipe flags defined in
|
||||||
* cvmx_usb_pipe_flags_t.
|
* enum cvmx_usb_pipe_flags.
|
||||||
* @device_addr:
|
* @device_addr:
|
||||||
* USB device address to open the pipe to
|
* USB device address to open the pipe to
|
||||||
* (0-127).
|
* (0-127).
|
||||||
|
@ -1101,7 +1101,7 @@ static inline int __cvmx_usb_get_pipe_handle(cvmx_usb_internal_state_t *usb,
|
||||||
* Returns: A non negative value is a pipe handle. Negative
|
* Returns: A non negative value is a pipe handle. Negative
|
||||||
* values are error codes.
|
* values are error codes.
|
||||||
*/
|
*/
|
||||||
int cvmx_usb_open_pipe(cvmx_usb_state_t *state, cvmx_usb_pipe_flags_t flags,
|
int cvmx_usb_open_pipe(cvmx_usb_state_t *state, enum cvmx_usb_pipe_flags flags,
|
||||||
int device_addr, int endpoint_num,
|
int device_addr, int endpoint_num,
|
||||||
enum cvmx_usb_speed device_speed, int max_packet,
|
enum cvmx_usb_speed device_speed, int max_packet,
|
||||||
enum cvmx_usb_transfer transfer_type,
|
enum cvmx_usb_transfer transfer_type,
|
||||||
|
|
|
@ -440,15 +440,22 @@ enum cvmx_usb_initialize_flags {
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Flags for passing when a pipe is created. Currently no flags
|
* enum cvmx_usb_pipe_flags - flags for passing when a pipe is created.
|
||||||
* need to be passed.
|
* Currently no flags need to be passed.
|
||||||
|
*
|
||||||
|
* @__CVMX_USB_PIPE_FLAGS_OPEN: Used internally to determine if a pipe is
|
||||||
|
* open. Do not use.
|
||||||
|
* @__CVMX_USB_PIPE_FLAGS_SCHEDULED: Used internally to determine if a pipe is
|
||||||
|
* actively using hardware. Do not use.
|
||||||
|
* @__CVMX_USB_PIPE_FLAGS_NEED_PING: Used internally to determine if a high
|
||||||
|
* speed pipe is in the ping state. Do not
|
||||||
|
* use.
|
||||||
*/
|
*/
|
||||||
typedef enum
|
enum cvmx_usb_pipe_flags {
|
||||||
{
|
__CVMX_USB_PIPE_FLAGS_OPEN = 1 << 16,
|
||||||
__CVMX_USB_PIPE_FLAGS_OPEN = 1<<16, /**< Used internally to determine if a pipe is open. Do not use */
|
__CVMX_USB_PIPE_FLAGS_SCHEDULED = 1 << 17,
|
||||||
__CVMX_USB_PIPE_FLAGS_SCHEDULED = 1<<17, /**< Used internally to determine if a pipe is actively using hardware. Do not use */
|
__CVMX_USB_PIPE_FLAGS_NEED_PING = 1 << 18,
|
||||||
__CVMX_USB_PIPE_FLAGS_NEED_PING = 1<<18, /**< Used internally to determine if a high speed pipe is in the ping state. Do not use */
|
};
|
||||||
} cvmx_usb_pipe_flags_t;
|
|
||||||
|
|
||||||
extern int cvmx_usb_get_num_ports(void);
|
extern int cvmx_usb_get_num_ports(void);
|
||||||
extern int cvmx_usb_initialize(cvmx_usb_state_t *state, int usb_port_number,
|
extern int cvmx_usb_initialize(cvmx_usb_state_t *state, int usb_port_number,
|
||||||
|
@ -459,7 +466,7 @@ extern int cvmx_usb_disable(cvmx_usb_state_t *state);
|
||||||
extern cvmx_usb_port_status_t cvmx_usb_get_status(cvmx_usb_state_t *state);
|
extern cvmx_usb_port_status_t cvmx_usb_get_status(cvmx_usb_state_t *state);
|
||||||
extern void cvmx_usb_set_status(cvmx_usb_state_t *state, cvmx_usb_port_status_t port_status);
|
extern void cvmx_usb_set_status(cvmx_usb_state_t *state, cvmx_usb_port_status_t port_status);
|
||||||
extern int cvmx_usb_open_pipe(cvmx_usb_state_t *state,
|
extern int cvmx_usb_open_pipe(cvmx_usb_state_t *state,
|
||||||
cvmx_usb_pipe_flags_t flags,
|
enum cvmx_usb_pipe_flags flags,
|
||||||
int device_addr, int endpoint_num,
|
int device_addr, int endpoint_num,
|
||||||
enum cvmx_usb_speed device_speed, int max_packet,
|
enum cvmx_usb_speed device_speed, int max_packet,
|
||||||
enum cvmx_usb_transfer transfer_type,
|
enum cvmx_usb_transfer transfer_type,
|
||||||
|
|
Loading…
Add table
Reference in a new issue