Skip to content

Commit 7cb4584

Browse files
jerome-pouillerMaureenHelm
authored andcommitted
soc: silabs: Fix SoC names
As discussed here[1], CONFIG_SOC should rely on CONFIG_SOC_* variables while it currently rely on CONFIG_SOC_PART_NUMBER_*. These variable are in fact misnamed since the migration to HWMv2. So "PART_NUMBER" has to be removed from these names. [1]: https://github.com/zephyrproject-rtos/ \ zephyr/pull/93285#discussion_r2221382981 Note, this patch has been generated with: sed -i -e s/SOC_PART_NUMBER_MGM/SOC_MGM/ \ -e s/SOC_PART_NUMBER_EF/SOC_EF/ \ -e s/SOC_PART_NUMBER_SIM3/SOC_SIM3/ \ -e s/SOC_PART_NUMBER_SIWG/SOC_SIWG/ \ soc/**/*.soc boards/**/Kconfig.* Signed-off-by: Jérôme Pouiller <[email protected]>
1 parent 70b507f commit 7cb4584

File tree

50 files changed

+100
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+100
-97
lines changed

boards/arduino/nano_matter/Kconfig.arduino_nano_matter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# SPDX-License-Identifier: Apache-2.0
66

77
config BOARD_ARDUINO_NANO_MATTER
8-
select SOC_PART_NUMBER_MGM240SD22VNA
8+
select SOC_MGM240SD22VNA

boards/gardena/sgrm/Kconfig.sgrm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# SPDX-License-Identifier: Apache-2.0
44

55
config BOARD_SGRM
6-
select SOC_PART_NUMBER_SIM3U167BGM
6+
select SOC_SIM3U167BGM

boards/seeed/xiao_mg24/Kconfig.xiao_mg24

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# SPDX-License-Identifier: Apache-2.0
55

66
config BOARD_XIAO_MG24
7-
select SOC_PART_NUMBER_EFR32MG24B220F1536IM48
7+
select SOC_EFR32MG24B220F1536IM48

boards/silabs/dev_kits/sim3u1xx_dk/Kconfig.sim3u1xx_dk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# SPDX-License-Identifier: Apache-2.0
44

55
config BOARD_SIM3U1XX_DK
6-
select SOC_PART_NUMBER_SIM3U167AGQ
6+
select SOC_SIM3U167AGQ

boards/silabs/dev_kits/siwx917_dk2605a/Kconfig.siwx917_dk2605a

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
config BOARD_SIWX917_DK2605A
5-
select SOC_PART_NUMBER_SIWG917M111MGTBA
5+
select SOC_SIWG917M111MGTBA

boards/silabs/dev_kits/sltb004a/Kconfig.sltb004a

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
config BOARD_SLTB004A
5-
select SOC_PART_NUMBER_EFR32MG12P332F1024GL125
5+
select SOC_EFR32MG12P332F1024GL125

boards/silabs/dev_kits/sltb009a/Kconfig.sltb009a

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
config BOARD_SLTB009A
5-
select SOC_PART_NUMBER_EFM32GG12B810F1024GM64
5+
select SOC_EFM32GG12B810F1024GM64

boards/silabs/dev_kits/sltb010a/Kconfig.sltb010a

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
config BOARD_SLTB010A
5-
select SOC_PART_NUMBER_EFR32BG22C224F512IM40
5+
select SOC_EFR32BG22C224F512IM40

boards/silabs/dev_kits/xg24_dk2601b/Kconfig.xg24_dk2601b

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
config BOARD_XG24_DK2601B
5-
select SOC_PART_NUMBER_EFR32MG24B310F1536IM48
5+
select SOC_EFR32MG24B310F1536IM48

boards/silabs/dev_kits/xg24_ek2703a/Kconfig.xg24_ek2703a

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
config BOARD_XG24_EK2703A
5-
select SOC_PART_NUMBER_EFR32MG24B210F1536IM48
5+
select SOC_EFR32MG24B210F1536IM48

0 commit comments

Comments
 (0)