Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1606031
| From | Sebastian Reichel <sre@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCHv2 04/11] tty: serial: omap: add UPF_BOOT_AUTOCONF flag for DT init |
| Date | 2017-03-21 23:40 +0100 |
| Message-ID | <tnABA-1iQ-5@gated-at.bofh.it> (permalink) |
| References | <tnABA-1iQ-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
The UPF_BOOT_AUTOCONF flag is needed for proper flow control support. Signed-off-by: Sebastian Reichel <sre@kernel.org> --- drivers/tty/serial/omap-serial.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c index 6c6f82ad8d5c..a4734649a0f0 100644 --- a/drivers/tty/serial/omap-serial.c +++ b/drivers/tty/serial/omap-serial.c @@ -1597,6 +1597,9 @@ static struct omap_uart_port_info *of_get_uart_port_info(struct device *dev) of_property_read_u32(dev->of_node, "clock-frequency", &omap_up_info->uartclk); + + omap_up_info->flags = UPF_BOOT_AUTOCONF; + return omap_up_info; } -- 2.11.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCHv2 04/11] tty: serial: omap: add UPF_BOOT_AUTOCONF flag for DT init Sebastian Reichel <sre@kernel.org> - 2017-03-21 23:40 +0100 Re: [PATCHv2 04/11] tty: serial: omap: add UPF_BOOT_AUTOCONF flag for DT init Pavel Machek <pavel@ucw.cz> - 2017-03-22 10:40 +0100
csiph-web