soc: arm: stm32h7: kconfig workaround to handle SoC H7A3XX-Q P/N

Set the correct soc string so that the correct CMSIS file
is being utilised.

Signed-off-by: Manojkumar Subramaniam <manoj@electrolance.com>
This commit is contained in:
Manojkumar Subramaniam 2021-11-16 00:08:19 +08:00 committed by Anas Nashif
commit bd9415e6bf

View file

@ -3,12 +3,13 @@
# Copyright (c) 2021 Electrolance Solutions # Copyright (c) 2021 Electrolance Solutions
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
if SOC_STM32H7A3XX if SOC_STM32H7A3XX || SOC_STM32H7A3XXQ
config SOC config SOC
default "stm32h7a3xx" default "stm32h7a3xxQ" if SOC_STM32H7A3XXQ
default "stm32h7a3xx" if SOC_STM32H7A3XX
config NUM_IRQS config NUM_IRQS
default 155 default 155
endif # SOC_STM32H7A3XX endif # SOC_STM32H7A3XX || SOC_STM32H7A3XXQ