diff options
author | Alexandre TORGUE | 2016-09-15 18:42:37 +0200 |
---|---|---|
committer | Greg Kroah-Hartman | 2016-09-22 11:48:55 +0200 |
commit | 59bed2dfe03e9e572bfb5a2d29effc1791eedcbc (patch) | |
tree | 523c25491a30fadf9d9492f4c23bf1126fbafa40 /drivers/tty | |
parent | serial: stm32: disable tx and rx during shutdown (diff) | |
download | kernel-qcow2-linux-59bed2dfe03e9e572bfb5a2d29effc1791eedcbc.tar.gz kernel-qcow2-linux-59bed2dfe03e9e572bfb5a2d29effc1791eedcbc.tar.xz kernel-qcow2-linux-59bed2dfe03e9e572bfb5a2d29effc1791eedcbc.zip |
serial: stm32: correct flow control property spelling
"st,hw-flow-ctrl" property is documented in device tree
binding whereas "auto-flow-control" was used in the code.
The driver is now aligned with the binding name
"st,hw-flow-ctrl".
Signed-off-by: Gerald Baeza <gerald.baeza@st.com>
Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/stm32-usart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/stm32-usart.c b/drivers/tty/serial/stm32-usart.c index 184b0183bb38..ab294b927b67 100644 --- a/drivers/tty/serial/stm32-usart.c +++ b/drivers/tty/serial/stm32-usart.c @@ -508,7 +508,7 @@ static struct stm32_port *stm32_of_get_stm32_port(struct platform_device *pdev) return NULL; stm32_ports[id].hw_flow_control = of_property_read_bool(np, - "auto-flow-control"); + "st,hw-flow-ctrl"); stm32_ports[id].port.line = id; return &stm32_ports[id]; } |