]> Pileus Git - ~andy/linux/commitdiff
staging: octeon-usb: cvmx_usb_transaction_flags_t -> enum cvmx_usb_transaction_flags
authorAaro Koskinen <aaro.koskinen@iki.fi>
Tue, 30 Jul 2013 20:43:01 +0000 (23:43 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Aug 2013 00:50:09 +0000 (17:50 -0700)
Replace cvmx_usb_transaction_flags_t with enum cvmx_usb_transaction_flags.

Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/octeon-usb/cvmx-usb.c

index 2d9474aab979e8eb5fcbeb2c21652985a4e222dc..b8af45da1c45ddd8d1682676b0ab55cd84ffbbc4 100644 (file)
@@ -84,9 +84,9 @@
 #define cvmx_read_csr use_cvmx_usb_read_csr64_instead_of_cvmx_read_csr
 #define cvmx_write_csr use_cvmx_usb_write_csr64_instead_of_cvmx_write_csr
 
-typedef enum {
+enum cvmx_usb_transaction_flags {
        __CVMX_USB_TRANSACTION_FLAGS_IN_USE = 1<<16,
-} cvmx_usb_transaction_flags_t;
+};
 
 enum {
        USB_CLOCK_TYPE_REF_12,
@@ -123,7 +123,7 @@ typedef struct cvmx_usb_transaction {
        struct cvmx_usb_transaction *prev;      /**< Transaction before this one in the pipe */
        struct cvmx_usb_transaction *next;      /**< Transaction after this one in the pipe */
        enum cvmx_usb_transfer type;            /**< Type of transaction, duplicated of the pipe */
-       cvmx_usb_transaction_flags_t flags;     /**< State flags for this transaction */
+       enum cvmx_usb_transaction_flags flags;  /**< State flags for this transaction */
        uint64_t buffer;                        /**< User's physical buffer address to read/write */
        int buffer_length;                      /**< Size of the user's buffer in bytes */
        uint64_t control_header;                /**< For control transactions, physical address of the 8 byte standard header */