Kconfig 490 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # I2C algorithm drivers configuration
  3. #
  4. menu "I2C Algorithms"
  5. depends on !I2C_HELPER_AUTO
  6. config I2C_ALGOBIT
  7. tristate "I2C bit-banging interfaces"
  8. config I2C_ALGOPCF
  9. tristate "I2C PCF 8584 interfaces"
  10. config I2C_ALGOPCA
  11. tristate "I2C PCA 9564 interfaces"
  12. endmenu
  13. # In automatic configuration mode, we still have to define the
  14. # symbols to avoid unmet dependencies.
  15. if I2C_HELPER_AUTO
  16. config I2C_ALGOBIT
  17. tristate
  18. config I2C_ALGOPCF
  19. tristate
  20. config I2C_ALGOPCA
  21. tristate
  22. endif