diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2015-07-01 16:04:14 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-07-08 21:51:40 -0400 |
commit | 03514739dce8cde8af5ee494405c9049925fb9de (patch) | |
tree | d34c506fe47f508610ab53867220b056effaa991 | |
parent | 6f921ecc7e59792940833235b58e488638030ed6 (diff) | |
download | u-boot-imx-03514739dce8cde8af5ee494405c9049925fb9de.zip u-boot-imx-03514739dce8cde8af5ee494405c9049925fb9de.tar.gz u-boot-imx-03514739dce8cde8af5ee494405c9049925fb9de.tar.bz2 |
stm32f4: fix gpio description in comment
On STM32F429 gpio PC6/PC7 can be allocated for USART6, as
reported in the comment.
But current code in
drivers/serial/serial_stm32.c
uses a different gpio mapping (PG14/PG9) for USART6.
Fix the comment to match current code in the driver.
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
To: u-boot@lists.denx.de
To: Kamil Lulko <rev13@wp.pl>
Cc: Tom Rini <trini@konsulko.com>
-rw-r--r-- | include/configs/stm32f429-discovery.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/stm32f429-discovery.h b/include/configs/stm32f429-discovery.h index c8af7b6..1b4fd21 100644 --- a/include/configs/stm32f429-discovery.h +++ b/include/configs/stm32f429-discovery.h @@ -55,7 +55,7 @@ * 1: TX:PA9 RX:PA10 * 2: TX:PD5 RX:PD6 * 3: TX:PC10 RX:PC11 - * 6: TX:PC6 RX:PC7 + * 6: TX:PG14 RX:PG9 */ #define CONFIG_STM32_USART 1 |