1# Copyright (c) 2021 Abel Sensors
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig GPIO_FXL6408
5	bool "FXL6408 I2C-based GPIO chip"
6	default y
7	depends on DT_HAS_FCS_FXL6408_ENABLED
8	depends on I2C
9	help
10	  Enable driver for FXL6408 I2C-based GPIO chip.
11
12if GPIO_FXL6408
13
14config GPIO_FXL6408_INIT_PRIORITY
15	int "Init priority"
16	default 80
17	help
18	  Device driver initialization priority.
19
20module = FXL6408
21module-str = fxl6408
22source "subsys/logging/Kconfig.template.log_config"
23
24endif # GPIO_FXL6408
25