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