]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
staging: octeon-usb: place opening braces of structs, enums on top
authorDevendra Naga <devendra.aaru@gmail.com>
Mon, 3 Jun 2013 21:16:16 +0000 (02:46 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 5 Jun 2013 22:25:41 +0000 (15:25 -0700)
this fixes coding style problem, placing of the braces just right after the
struct name, not below the struct name.

this reduces the errors reported by checkpatch script from

total: 1496 errors, 2133 warnings, 3344 lines checked

to

total: 1488 errors, 2132 warnings, 3336 lines checked

Cc: Aaro Koskinen <aaro.koskinen@iki.fi>
Cc: David Daney <ddaney.cavm@gmail.com>
Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/octeon-usb/cvmx-usb.c

index 08ee4ab46c8a99c1050d393a32da73f9b47dc542..04a9ba3faeae10b9c45d5839af371a6ffe314bc3 100644 (file)
@@ -89,8 +89,7 @@
 #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
-{
+typedef enum {
     __CVMX_USB_TRANSACTION_FLAGS_IN_USE = 1<<16,
 } cvmx_usb_transaction_flags_t;
 
@@ -109,8 +108,7 @@ enum {
  * the NAK handler can backup to the previous low level
  * transaction with a simple clearing of bit 0.
  */
-typedef enum
-{
+typedef enum {
     CVMX_USB_STAGE_NON_CONTROL,
     CVMX_USB_STAGE_NON_CONTROL_SPLIT_COMPLETE,
     CVMX_USB_STAGE_SETUP,
@@ -126,8 +124,7 @@ typedef enum
  * regardless of type. These are linked together to form a list
  * of pending requests for a pipe.
  */
-typedef struct cvmx_usb_transaction
-{
+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 */
     cvmx_usb_transfer_t type;           /**< Type of transaction, duplicated of the pipe */
@@ -151,8 +148,7 @@ typedef struct cvmx_usb_transaction
  * A pipe represents a virtual connection between Octeon and some
  * USB device. It contains a list of pending request to the device.
  */
-typedef struct cvmx_usb_pipe
-{
+typedef struct cvmx_usb_pipe {
     struct cvmx_usb_pipe *prev;         /**< Pipe before this one in the list */
     struct cvmx_usb_pipe *next;         /**< Pipe after this one in the list */
     cvmx_usb_transaction_t *head;       /**< The first pending transaction */
@@ -174,16 +170,13 @@ typedef struct cvmx_usb_pipe
     int8_t  split_sc_frame;             /**< The low order bits of the frame number the split complete should be sent on */
 } cvmx_usb_pipe_t;
 
-typedef struct
-{
+typedef struct {
     cvmx_usb_pipe_t *head;              /**< Head of the list, or NULL if empty */
     cvmx_usb_pipe_t *tail;              /**< Tail if the list, or NULL if empty */
 } cvmx_usb_pipe_list_t;
 
-typedef struct
-{
-    struct
-    {
+typedef struct {
+    struct {
         int channel;
         int size;
         uint64_t address;
@@ -195,8 +188,7 @@ typedef struct
 /**
  * The state of the USB block is stored in this structure
  */
-typedef struct
-{
+typedef struct {
     int init_flags;                     /**< Flags passed to initialize */
     int index;                          /**< Which USB block this is for */
     int idle_hardware_channels;         /**< Bit set for every idle hardware channel */