tty: serial: amba: cleanup whitespace
authorThéo Lebrun <theo.lebrun@bootlin.com>
Thu, 30 Nov 2023 14:07:13 +0000 (15:07 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 Dec 2023 11:02:37 +0000 (12:02 +0100)
Fix whitespace in include/linux/amba/serial.h to match current kernel
coding standards. Fixes about:

 - CHECK: spaces preferred around that '|' (ctx:VxV)
 - ERROR: code indent should use tabs where possible
 - WARNING: Unnecessary space before function pointer arguments
 - WARNING: please, no spaces at the start of a line

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>
Link: https://lore.kernel.org/r/20231130-mbly-uart-v5-1-6566703a04b5@bootlin.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/amba/serial.h

index a1307b58cc2c6d4fbfcbe5c00635935c47a5fd1b..27003ec52114cb93111826d2f8b9cd4984360871 100644 (file)
 #define UART011_DR_PE          (1 << 9)
 #define UART011_DR_FE          (1 << 8)
 
-#define UART01x_RSR_OE                 0x08
-#define UART01x_RSR_BE                 0x04
-#define UART01x_RSR_PE                 0x02
-#define UART01x_RSR_FE                 0x01
+#define UART01x_RSR_OE         0x08
+#define UART01x_RSR_BE         0x04
+#define UART01x_RSR_PE         0x02
+#define UART01x_RSR_FE         0x01
 
 #define UART011_FR_RI          0x100
 #define UART011_FR_TXFE                0x080
@@ -86,9 +86,9 @@
 #define UART01x_FR_TXFF                0x020
 #define UART01x_FR_RXFE                0x010
 #define UART01x_FR_BUSY                0x008
-#define UART01x_FR_DCD                 0x004
-#define UART01x_FR_DSR                 0x002
-#define UART01x_FR_CTS                 0x001
+#define UART01x_FR_DCD         0x004
+#define UART01x_FR_DSR         0x002
+#define UART01x_FR_CTS         0x001
 #define UART01x_FR_TMSK                (UART01x_FR_TXFF + UART01x_FR_BUSY)
 
 /*
 #define UART011_CR_TXE         0x0100  /* transmit enable */
 #define UART011_CR_LBE         0x0080  /* loopback enable */
 #define UART010_CR_RTIE                0x0040
-#define UART010_CR_TIE                 0x0020
-#define UART010_CR_RIE                 0x0010
+#define UART010_CR_TIE         0x0020
+#define UART010_CR_RIE         0x0010
 #define UART010_CR_MSIE                0x0008
 #define ST_UART011_CR_OVSFACT  0x0008  /* Oversampling factor */
 #define UART01x_CR_IIRLP       0x0004  /* SIR low power mode */
 #define UART01x_CR_SIREN       0x0002  /* SIR enable */
 #define UART01x_CR_UARTEN      0x0001  /* UART enable */
+
 #define UART011_LCRH_SPS       0x80
 #define UART01x_LCRH_WLEN_8    0x60
 #define UART01x_LCRH_WLEN_7    0x40
 #define UART011_TXDMAE         (1 << 1)        /* enable transmit dma */
 #define UART011_RXDMAE         (1 << 0)        /* enable receive dma */
 
-#define UART01x_RSR_ANY                (UART01x_RSR_OE|UART01x_RSR_BE|UART01x_RSR_PE|UART01x_RSR_FE)
-#define UART01x_FR_MODEM_ANY   (UART01x_FR_DCD|UART01x_FR_DSR|UART01x_FR_CTS)
+#define UART01x_RSR_ANY                (UART01x_RSR_OE | UART01x_RSR_BE | UART01x_RSR_PE | UART01x_RSR_FE)
+#define UART01x_FR_MODEM_ANY   (UART01x_FR_DCD | UART01x_FR_DSR | UART01x_FR_CTS)
 
 #ifndef __ASSEMBLY__
 struct amba_device; /* in uncompress this is included but amba/bus.h is not */
@@ -220,8 +220,8 @@ struct amba_pl011_data {
        bool dma_rx_poll_enable;
        unsigned int dma_rx_poll_rate;
        unsigned int dma_rx_poll_timeout;
-        void (*init) (void);
-       void (*exit) (void);
+       void (*init)(void);
+       void (*exit)(void);
 };
 #endif