1# PCA953X GPIO configuration options 2 3# Copyright (c) 2018 Aapo Vienamo 4# Copyright (c) 2021 Laird Connectivity 5# SPDX-License-Identifier: Apache-2.0 6 7# Workaround for not being able to have commas in macro arguments 8DT_COMPAT_TI_TCA9538 := ti,tca9538 9 10menuconfig GPIO_PCA953X 11 bool "PCA953X I2C GPIO chip" 12 default $(dt_compat_enabled,$(DT_COMPAT_TI_TCA9538)) 13 depends on I2C 14 help 15 Enable driver for PCA953X I2C GPIO chip. 16 17if GPIO_PCA953X 18 19config GPIO_PCA953X_INIT_PRIORITY 20 int "Init priority" 21 default 70 22 help 23 Device driver initialization priority. 24 25endif # GPIO_PCA953X 26