usb: dwc3: Align DWC3_EP_* flag macros
authorJack Pham <jackp@codeaurora.org>
Thu, 21 Oct 2021 18:01:29 +0000 (11:01 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 22 Oct 2021 09:14:26 +0000 (11:14 +0200)
Fix the DWC3_EP_* flag macros so that the definitions are all
lined up on the same tab column for consistent style.

No functional change.

Signed-off-by: Jack Pham <jackp@codeaurora.org>
Link: https://lore.kernel.org/r/20211021180129.27938-2-jackp@codeaurora.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/dwc3/core.h

index 2d62f5646fdfb2c62e98088d46b92bee3dacd63c..620c8d3914d7ccbe90dce6f5b9cfa02f48ebc23a 100644 (file)
@@ -715,13 +715,13 @@ struct dwc3_ep {
 
        u32                     saved_state;
        unsigned int            flags;
-#define DWC3_EP_ENABLED                BIT(0)
-#define DWC3_EP_STALL          BIT(1)
-#define DWC3_EP_WEDGE          BIT(2)
-#define DWC3_EP_TRANSFER_STARTED BIT(3)
-#define DWC3_EP_END_TRANSFER_PENDING BIT(4)
-#define DWC3_EP_PENDING_REQUEST        BIT(5)
-#define DWC3_EP_DELAY_START    BIT(6)
+#define DWC3_EP_ENABLED                        BIT(0)
+#define DWC3_EP_STALL                  BIT(1)
+#define DWC3_EP_WEDGE                  BIT(2)
+#define DWC3_EP_TRANSFER_STARTED       BIT(3)
+#define DWC3_EP_END_TRANSFER_PENDING   BIT(4)
+#define DWC3_EP_PENDING_REQUEST                BIT(5)
+#define DWC3_EP_DELAY_START            BIT(6)
 #define DWC3_EP_WAIT_TRANSFER_COMPLETE BIT(7)
 #define DWC3_EP_IGNORE_NEXT_NOSTREAM   BIT(8)
 #define DWC3_EP_FORCE_RESTART_STREAM   BIT(9)
@@ -730,7 +730,7 @@ struct dwc3_ep {
 #define DWC3_EP_TXFIFO_RESIZED         BIT(12)
 
        /* This last one is specific to EP0 */
-#define DWC3_EP0_DIR_IN                BIT(31)
+#define DWC3_EP0_DIR_IN                        BIT(31)
 
        /*
         * IMPORTANT: we *know* we have 256 TRBs in our @trb_pool, so we will