diff options
author | Aaro Koskinen <aaro.koskinen@iki.fi> | 2013-07-30 20:43:02 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-01 00:50:10 (GMT) |
commit | 03f9adf44cef7423fa9493b3abc2f2d764157481 (patch) | |
tree | a919f14441d5ddddcd3841d68504a15178b1a251 | |
parent | 4f1d6ba901151b5c56babbb544546ebb7a9e0308 (diff) | |
download | linux-fsl-qoriq-03f9adf44cef7423fa9493b3abc2f2d764157481.tar.xz |
staging: octeon-usb: cvmx_usb_stage_t -> enum cvmx_usb_stage
Replace cvmx_usb_stage_t with enum cvmx_usb_stage.
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/octeon-usb/cvmx-usb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/octeon-usb/cvmx-usb.c b/drivers/staging/octeon-usb/cvmx-usb.c index b8af45d..f591897 100644 --- a/drivers/staging/octeon-usb/cvmx-usb.c +++ b/drivers/staging/octeon-usb/cvmx-usb.c @@ -103,7 +103,7 @@ enum { * the NAK handler can backup to the previous low level * transaction with a simple clearing of bit 0. */ -typedef enum { +enum cvmx_usb_stage { CVMX_USB_STAGE_NON_CONTROL, CVMX_USB_STAGE_NON_CONTROL_SPLIT_COMPLETE, CVMX_USB_STAGE_SETUP, @@ -112,7 +112,7 @@ typedef enum { CVMX_USB_STAGE_DATA_SPLIT_COMPLETE, CVMX_USB_STAGE_STATUS, CVMX_USB_STAGE_STATUS_SPLIT_COMPLETE, -} cvmx_usb_stage_t; +}; /** * This structure describes each pending USB transaction @@ -134,7 +134,7 @@ typedef struct cvmx_usb_transaction { int pktcnt; int retries; int actual_bytes; /**< Actual bytes transfer for this transaction */ - cvmx_usb_stage_t stage; /**< For control transactions, the current stage */ + enum cvmx_usb_stage stage; /**< For control transactions, the current stage */ cvmx_usb_callback_func_t callback; /**< User's callback function when complete */ void *callback_data; /**< User's data */ } cvmx_usb_transaction_t; |