diff options
author | Tom Rini <trini@konsulko.com> | 2016-07-21 15:38:13 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-07-21 15:38:13 -0400 |
commit | 95d52733036af7438a5285d729d53844ec48c63e (patch) | |
tree | 7934016f0d4c616facb9f7b0c811f2579c0939c8 /arch/arm/mach-stm32 | |
parent | ff87b0810753cfaec0e3094aa9fda8b12d6ca569 (diff) | |
download | u-boot-95d52733036af7438a5285d729d53844ec48c63e.tar.gz |
Revert "stm32: Change USART port to USART6 for stm32f746 discovery board"
Per Vikas' request, the problem this commit is supposed to be solving is
something he doesn't see and further this introduces additional hardware
requirements.
This reverts commit 4b2fd720a7b2f78c42d1565edf4c67f378c65440.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/mach-stm32')
-rw-r--r-- | arch/arm/mach-stm32/stm32f7/clock.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/mach-stm32/stm32f7/clock.c b/arch/arm/mach-stm32/stm32f7/clock.c index ac47850551..78d22d40fd 100644 --- a/arch/arm/mach-stm32/stm32f7/clock.c +++ b/arch/arm/mach-stm32/stm32f7/clock.c @@ -245,9 +245,6 @@ void clock_setup(int peripheral) case USART1_CLOCK_CFG: setbits_le32(RCC_BASE + RCC_APB2ENR, RCC_ENR_USART1EN); break; - case USART6_CLOCK_CFG: - setbits_le32(RCC_BASE + RCC_APB2ENR, RCC_ENR_USART6EN); - break; case GPIO_A_CLOCK_CFG: setbits_le32(RCC_BASE + RCC_AHB1ENR, RCC_ENR_GPIO_A_EN); break; |