diff options
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/Makefile | 2 | ||||
-rw-r--r-- | drivers/i2c/muxes/Kconfig | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/drivers/i2c/Makefile b/drivers/i2c/Makefile index 32198bd5b20..811ad9b72a0 100644 --- a/drivers/i2c/Makefile +++ b/drivers/i2c/Makefile @@ -40,4 +40,4 @@ obj-$(CONFIG_SYS_I2C_UNIPHIER) += i2c-uniphier.o obj-$(CONFIG_SYS_I2C_UNIPHIER_F) += i2c-uniphier-f.o obj-$(CONFIG_SYS_I2C_ZYNQ) += zynq_i2c.o -obj-y += muxes/ +obj-$(CONFIG_I2C_MUX) += muxes/ diff --git a/drivers/i2c/muxes/Kconfig b/drivers/i2c/muxes/Kconfig index bd3e078d629..913093d53df 100644 --- a/drivers/i2c/muxes/Kconfig +++ b/drivers/i2c/muxes/Kconfig @@ -1,5 +1,5 @@ config I2C_MUX - bool "Suport I2C multiplexers" + bool "Support I2C multiplexers" depends on DM_I2C help This enables I2C buses to be multiplexed, so that you can select @@ -8,10 +8,10 @@ config I2C_MUX using a suitable I2C MUX driver. config I2C_ARB_GPIO_CHALLENGE - bool "GPIO-based I2C arbitration" - depends on I2C_MUX - help - If you say yes to this option, support will be included for an - I2C multimaster arbitration scheme using GPIOs and a challenge & - response mechanism where masters have to claim the bus by asserting - a GPIO. + bool "GPIO-based I2C arbitration" + depends on I2C_MUX + help + If you say yes to this option, support will be included for an + I2C multimaster arbitration scheme using GPIOs and a challenge & + response mechanism where masters have to claim the bus by asserting + a GPIO. |