soc: stm32: STM32F7: Remove useless package digit

Fixes #16733, applied to STM32F7 series.

Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
Erwan Gouriou 2019-06-17 12:03:51 +02:00 committed by Anas Nashif
commit e6a4839c61
12 changed files with 20 additions and 20 deletions

View file

@ -5,7 +5,7 @@
# SPDX-License-Identifier: Apache-2.0
#
if SOC_STM32F723XE
if SOC_STM32F723XX
config SOC
string
@ -15,4 +15,4 @@ config NUM_IRQS
int
default 104
endif # SOC_STM32F723XE
endif # SOC_STM32F723XX

View file

@ -5,7 +5,7 @@
# SPDX-License-Identifier: Apache-2.0
#
if SOC_STM32F746XG
if SOC_STM32F746XX
config SOC
string
@ -25,4 +25,4 @@ config NUM_IRQS
int
default 98
endif # SOC_STM32F746XG
endif # SOC_STM32F746XX

View file

@ -5,7 +5,7 @@
# SPDX-License-Identifier: Apache-2.0
#
if SOC_STM32F769XI
if SOC_STM32F769XX
config SOC
string
@ -25,4 +25,4 @@ config NUM_IRQS
int
default 110
endif # SOC_STM32F769XI
endif # SOC_STM32F769XX

View file

@ -9,17 +9,17 @@ choice
prompt "STM32F7x MCU Selection"
depends on SOC_SERIES_STM32F7X
config SOC_STM32F723XE
bool "STM32F723XE"
config SOC_STM32F723XX
bool "STM32F723XX"
config SOC_STM32F746XG
bool "STM32F746XG"
config SOC_STM32F746XX
bool "STM32F746XX"
config SOC_STM32F756XX
bool "STM32F756XX"
config SOC_STM32F769XI
bool "STM32F769XI"
config SOC_STM32F769XX
bool "STM32F769XX"
select CPU_HAS_FPU_DOUBLE_PRECISION
endchoice