forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kconfig: Remove unused symbols defined only in Kconfig.defconfig files
Turning 'def_bool' in Kconfig.defconfig files into 'default' revealed three unused symbols (confirmed with 'git grep'). Remove them. Search for "Kconfig.defconfig" in https://docs.zephyrproject.org/latest/application/kconfig-tips.html for an explanation of how def_bool->default can reveal undefined symbols. Removed unused symbols: - SPI_DW_CLOCK_GATE - PINMUX_MPS2 - BOARD_XTENSA Also remove an assignment to the promptless symbol ALTERA_AVALON_SYSID, in tests/boards/altera_max10/sysid/prj.conf. Assignments to promptless symbols have no effect. Signed-off-by: Ulf Magnusson <[email protected]>
- Loading branch information
Showing
4 changed files
with
0 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,9 +71,6 @@ config SPI_DW | |
|
||
if SPI_DW | ||
|
||
config SPI_DW_CLOCK_GATE | ||
def_bool n | ||
|
||
config SPI_DW_FIFO_DEPTH | ||
default 32 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
CONFIG_ALTERA_AVALON_SYSID=y | ||
CONFIG_ZTEST=y |