Kconfig 729 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # PWM Timer configuration
  3. #
  4. menu "Pulse Width Modulation Timer"
  5. config PWM
  6. tristate "Pulse Width Modulation (PWM) Timer support"
  7. config S3C2443_PWM
  8. bool "S3C2443 PWM support"
  9. depends on CPU_S3C2443 && PWM
  10. help
  11. S3C2443 PWM support.
  12. config S3C2450_PWM
  13. bool "S3C2450 PWM support"
  14. depends on CPU_S3C2450 && PWM
  15. help
  16. S3C2450 PWM support.
  17. config S3C2416_PWM
  18. bool "S3C2416 PWM support"
  19. depends on CPU_S3C2416 && PWM
  20. help
  21. S3C2416 PWM support.
  22. config S3C6400_PWM
  23. bool "S3C6400/10 PWM support"
  24. depends on (CPU_S3C6400 || CPU_S3C6410) && PWM
  25. help
  26. S3C6400 PWM support.
  27. endmenu