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:
parent
881407be6e
commit
bd9415e6bf
1 changed files with 4 additions and 3 deletions
|
@ -3,12 +3,13 @@
|
|||
# Copyright (c) 2021 Electrolance Solutions
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_STM32H7A3XX
|
||||
if SOC_STM32H7A3XX || SOC_STM32H7A3XXQ
|
||||
|
||||
config SOC
|
||||
default "stm32h7a3xx"
|
||||
default "stm32h7a3xxQ" if SOC_STM32H7A3XXQ
|
||||
default "stm32h7a3xx" if SOC_STM32H7A3XX
|
||||
|
||||
config NUM_IRQS
|
||||
default 155
|
||||
|
||||
endif # SOC_STM32H7A3XX
|
||||
endif # SOC_STM32H7A3XX || SOC_STM32H7A3XXQ
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue