[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20220306185149.GB19394@wunner.de>
Date: Sun, 6 Mar 2022 19:51:49 +0100
From: Lukas Wunner <lukas@...ner.de>
To: Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>
Cc: linux-serial@...r.kernel.org, Jiri Slaby <jirislaby@...nel.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-kernel@...r.kernel.org, Johan Hovold <johan@...nel.org>,
Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
Heikki Krogerus <heikki.krogerus@...ux.intel.com>,
Raymond Tan <raymond.tan@...el.com>
Subject: Re: [PATCH 2/7] serial: 8250_dwlib: RS485 HW full duplex support
On Wed, Mar 02, 2022 at 11:56:01AM +0200, Ilpo Järvinen wrote:
> @@ -110,9 +110,14 @@ static int dw8250_rs485_config(struct uart_port *p, struct serial_rs485 *rs485)
>
> if (rs485->flags & SER_RS485_ENABLED) {
> /* Clearing unsupported flags. */
> - rs485->flags &= SER_RS485_ENABLED;
> -
> - tcr |= DW_UART_TCR_RS485_EN | DW_UART_TCR_XFER_MODE_DE_OR_RE;
> + rs485->flags &= SER_RS485_ENABLED | SER_RS485_RX_DURING_TX;
> + tcr |= DW_UART_TCR_RS485_EN;
> +
> + if (rs485->flags & SER_RS485_RX_DURING_TX) {
> + tcr |= DW_UART_TCR_XFER_MODE_DE_DURING_RE;
> + } else {
> + tcr |= DW_UART_TCR_XFER_MODE_DE_OR_RE;
> + }
This patch deletes lines introduced by the preceding patch.
I'd just squash the two together, I don't see much value in
introducing full duplex support in a separate patch.
Thanks,
Lukas
Powered by blists - more mailing lists