1# Copyright (c) 2020 Innoseis BV 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig I2C_TCA954X 5 bool "I2C addressable switch" 6 default y 7 depends on DT_HAS_TI_TCA9546A_ENABLED || DT_HAS_TI_TCA9548A_ENABLED 8 help 9 Enable TCA954x series I2C bus switch 10 11if I2C_TCA954X 12 13config I2C_TCA954X_ROOT_INIT_PRIO 14 int "TCA954x root driver init priority" 15 default I2C_INIT_PRIORITY 16 17config I2C_TCA954X_CHANNEL_INIT_PRIO 18 int "TCA954x channel driver init priority" 19 default I2C_INIT_PRIORITY 20 21endif 22