1# PCA6416 GPIO configuration options
2
3# Copyright 2024 NXP
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig GPIO_PCA6416
7	bool "PCA6416 I2C GPIO chip"
8	default y
9	depends on DT_HAS_NXP_PCA6416_ENABLED
10	select I2C
11	help
12	  Enable driver for PCA6416 I2C GPIO chip.
13
14if GPIO_PCA6416
15
16config GPIO_PCA6416_INIT_PRIORITY
17	int "Init priority"
18	default 70
19	help
20	  PCA6416 Device driver initialization priority.
21
22endif # GPIO_PCA6416
23