Message ID | 20221118122539.384993-8-brgl@bgdev.pl (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | serial: qcom-geni-serial: implement support for SE DMA | expand |
On 18/11/2022 13:25, Bartosz Golaszewski wrote: > From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> > > Remove redundant indentation in struct member assignment. > > Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> > --- Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org> Konrad > drivers/tty/serial/qcom_geni_serial.c | 24 ++++++++++++------------ > 1 file changed, 12 insertions(+), 12 deletions(-) > > diff --git a/drivers/tty/serial/qcom_geni_serial.c b/drivers/tty/serial/qcom_geni_serial.c > index 22c1869c60f4..39041538e5d2 100644 > --- a/drivers/tty/serial/qcom_geni_serial.c > +++ b/drivers/tty/serial/qcom_geni_serial.c > @@ -138,26 +138,26 @@ static struct uart_driver qcom_geni_uart_driver; > static struct qcom_geni_serial_port qcom_geni_uart_ports[GENI_UART_PORTS] = { > [0] = { > .uport = { > - .iotype = UPIO_MEM, > - .ops = &qcom_geni_uart_pops, > - .flags = UPF_BOOT_AUTOCONF, > - .line = 0, > + .iotype = UPIO_MEM, > + .ops = &qcom_geni_uart_pops, > + .flags = UPF_BOOT_AUTOCONF, > + .line = 0, > }, > }, > [1] = { > .uport = { > - .iotype = UPIO_MEM, > - .ops = &qcom_geni_uart_pops, > - .flags = UPF_BOOT_AUTOCONF, > - .line = 1, > + .iotype = UPIO_MEM, > + .ops = &qcom_geni_uart_pops, > + .flags = UPF_BOOT_AUTOCONF, > + .line = 1, > }, > }, > [2] = { > .uport = { > - .iotype = UPIO_MEM, > - .ops = &qcom_geni_uart_pops, > - .flags = UPF_BOOT_AUTOCONF, > - .line = 2, > + .iotype = UPIO_MEM, > + .ops = &qcom_geni_uart_pops, > + .flags = UPF_BOOT_AUTOCONF, > + .line = 2, > }, > }, > };
diff --git a/drivers/tty/serial/qcom_geni_serial.c b/drivers/tty/serial/qcom_geni_serial.c index 22c1869c60f4..39041538e5d2 100644 --- a/drivers/tty/serial/qcom_geni_serial.c +++ b/drivers/tty/serial/qcom_geni_serial.c @@ -138,26 +138,26 @@ static struct uart_driver qcom_geni_uart_driver; static struct qcom_geni_serial_port qcom_geni_uart_ports[GENI_UART_PORTS] = { [0] = { .uport = { - .iotype = UPIO_MEM, - .ops = &qcom_geni_uart_pops, - .flags = UPF_BOOT_AUTOCONF, - .line = 0, + .iotype = UPIO_MEM, + .ops = &qcom_geni_uart_pops, + .flags = UPF_BOOT_AUTOCONF, + .line = 0, }, }, [1] = { .uport = { - .iotype = UPIO_MEM, - .ops = &qcom_geni_uart_pops, - .flags = UPF_BOOT_AUTOCONF, - .line = 1, + .iotype = UPIO_MEM, + .ops = &qcom_geni_uart_pops, + .flags = UPF_BOOT_AUTOCONF, + .line = 1, }, }, [2] = { .uport = { - .iotype = UPIO_MEM, - .ops = &qcom_geni_uart_pops, - .flags = UPF_BOOT_AUTOCONF, - .line = 2, + .iotype = UPIO_MEM, + .ops = &qcom_geni_uart_pops, + .flags = UPF_BOOT_AUTOCONF, + .line = 2, }, }, };