1 2if MCTP 3 4menu "MCTP Device Drivers" 5 6config MCTP_TRANSPORT_I2C 7 tristate "MCTP SMBus/I2C transport" 8 # i2c-mux is optional, but we must build as a module if i2c-mux is a module 9 depends on I2C_MUX || !I2C_MUX 10 depends on I2C 11 depends on I2C_SLAVE 12 select MCTP_FLOWS 13 help 14 Provides a driver to access MCTP devices over SMBus/I2C transport, 15 from DMTF specification DSP0237. A MCTP protocol network device is 16 created for each I2C bus that has been assigned a mctp-i2c device. 17 18endmenu 19 20endif 21