[U-Boot] [PATCH] 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 ---
This patch should be applied _after_ the patch stm32f4: fix minor typo in comment just sent to the list as: http://lists.denx.de/pipermail/u-boot/2015-July/217854.html
include/configs/stm32f429-discovery.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/configs/stm32f429-discovery.h b/include/configs/stm32f429-discovery.h index ec5302f..de4850c 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

On Wed, Jul 01, 2015 at 04:04:14PM +0800, Antonio Borneo wrote:
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
Applied to u-boot/master, thanks!
participants (2)
-
Antonio Borneo
-
Tom Rini