Kconfig 533 B

1234567891011121314151617181920
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config FW_CS_DSP
  3. tristate
  4. default n
  5. config FW_CS_DSP_KUNIT_TEST_UTILS
  6. tristate
  7. config FW_CS_DSP_KUNIT_TEST
  8. tristate "KUnit tests for Cirrus Logic cs_dsp" if !KUNIT_ALL_TESTS
  9. depends on KUNIT && REGMAP && FW_CS_DSP
  10. default KUNIT_ALL_TESTS
  11. select FW_CS_DSP_KUNIT_TEST_UTILS
  12. help
  13. This builds KUnit tests for cs_dsp.
  14. For more information on KUnit and unit tests in general,
  15. please refer to the KUnit documentation in
  16. Documentation/dev-tools/kunit/.
  17. If in doubt, say "N".