zephyr/drivers/entropy/Kconfig.mcux
Ulf Magnusson 93689bdc80 kconfig: Remove no-op selects of choice symbols
Selecting a choice symbol is always a no-op, and the latest version of
Kconfiglib prints a warning. This commit removes all selects of choice
symbols, which might make the Kconfig files a bit clearer and gets rid
of the warnings.

This is just a dumb removal. I did not try to guess the intent of each
select.

Fixes #6849

Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
2018-03-29 08:57:39 -04:00

24 lines
640 B
Plaintext

# Kconfig.mcux - mcux entropy generator driver configuration
#
# Copyright (c) 2016 ARM Ltd.
#
# SPDX-License-Identifier: Apache-2.0
menuconfig ENTROPY_MCUX_RNGA
bool "MCUX RNGA driver"
depends on ENTROPY_GENERATOR && HAS_MCUX_RNGA
default n
select ENTROPY_HAS_DRIVER
help
This option enables the random number generator accelerator (RNGA)
driver based on the MCUX RNGA driver.
menuconfig ENTROPY_MCUX_TRNG
bool "MCUX TRNG driver"
depends on ENTROPY_GENERATOR && HAS_MCUX_TRNG
default n
select ENTROPY_HAS_DRIVER
help
This option enables the true random number generator (TRNG)
driver based on the MCUX TRNG driver.