zephyr/drivers/entropy/Kconfig.mcux
Ulf Magnusson 61bcd766f7 kconfig: drivers: entropy: Remove duplicated ENTROPY_GENERATOR deps.
Also remove some duplicated dependencies for the related symbol
ENTROPY_NRF5_RNG.

The redundant ENTROPY_GENERATOR deps. are in files sourced within a

  if ENTROPY_GENERATOR
  ...
  endif

block in drivers/entropy/Kconfig.

The redundant ENTROPY_NRF5_RNG deps. are due to redundant 'depends on'
within an 'if' in the same file.

Tip: Jump to symbols with '/' in the menuconfig and press '?' to check
their dependencies. If there are duplicated dependencies, the
'included via ...' path can be handy to discover where they are added.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-03-07 13:38:35 +01:00

24 lines
624 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 HAS_MCUX_RNGA
select ENTROPY_HAS_DRIVER
select HAS_DTS_ENTROPY
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 HAS_MCUX_TRNG
select ENTROPY_HAS_DRIVER
select HAS_DTS_ENTROPY
help
This option enables the true random number generator (TRNG)
driver based on the MCUX TRNG driver.