-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Closed
Copy link
Labels
bugThe issue is a bug, or the PR is fixing a bugThe issue is a bug, or the PR is fixing a bugpriority: lowLow impact/importance bugLow impact/importance bug
Description
The following Kconfig symbols never existed, but are assigned in boards/arm/cc2650_sensortag/cc2650_sensortag_defconfig:
- PINMUX_CC2650_INIT_PRIO
- CC2650_TRNG_IRQ_PRIO
- CC2650_TRNG_ENTROPY_GENERATOR
Only the last one is referenced elsewhere, giving some dead code:
arch/arm/soc/ti_simplelink/cc2650/soc.c:#ifdef CONFIG_CC2650_TRNG_ENTROPY_GENERATOR
arch/arm/soc/ti_simplelink/cc2650/soc.c: defined(CONFIG_CC2650_TRNG_ENTROPY_GENERATOR) || \
arch/arm/soc/ti_simplelink/cc2650/soc.c:#if defined(CONFIG_GPIO_CC2650) || defined(CONFIG_CC2650_TRNG_ENTROPY_GENERATOR)
arch/arm/soc/ti_simplelink/cc2650/soc.c:#ifdef CONFIG_CC2650_TRNG_ENTROPY_GENERATOR
arch/arm/soc/ti_simplelink/cc2650/soc.c:#if defined(CONFIG_GPIO_CC2650) || defined(CONFIG_CC2650_TRNG_ENTROPY_GENERATOR)
The #ifdefs were renamed by commit da9b0dd (drivers: Rename random to entropy), but no symbol with the old name exists either.
Metadata
Metadata
Assignees
Labels
bugThe issue is a bug, or the PR is fixing a bugThe issue is a bug, or the PR is fixing a bugpriority: lowLow impact/importance bugLow impact/importance bug