Kconfig 280 B

1234567891011121314151617181920212223
  1. # SPDX-License-Identifier: BSD-2-Clause
  2. menu "I2C Support"
  3. config FDT_I2C
  4. bool "FDT based I2C drivers"
  5. depends on FDT
  6. select I2C
  7. default n
  8. if FDT_I2C
  9. config FDT_I2C_SIFIVE
  10. bool "SiFive I2C FDT driver"
  11. default n
  12. endif
  13. config I2C
  14. bool "I2C support"
  15. default n
  16. endmenu