Kconfig 596 B

1234567891011121314151617181920212223
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Ethernet Power Sourcing Equipment drivers
  4. #
  5. menuconfig PSE_CONTROLLER
  6. bool "Ethernet Power Sourcing Equipment Support"
  7. help
  8. Generic Power Sourcing Equipment Controller support.
  9. If unsure, say no.
  10. if PSE_CONTROLLER
  11. config PSE_REGULATOR
  12. tristate "Regulator based PSE controller"
  13. depends on REGULATOR || COMPILE_TEST
  14. help
  15. This module provides support for simple regulator based Ethernet Power
  16. Sourcing Equipment without automatic classification support. For
  17. example for basic implementation of PoDL (802.3bu) specification.
  18. endif