1# CY8C95XX GPIO configuration options
2
3# Copyright (c) 2021 Synopsys
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig GPIO_CY8C95XX
7	bool "CY8C95XX I2C GPIO chip"
8	default y
9	depends on DT_HAS_CYPRESS_CY8C95XX_GPIO_PORT_ENABLED
10	depends on I2C
11	help
12	  Enable driver for CY8C95XX I2C GPIO chip.
13
14if GPIO_CY8C95XX
15
16config GPIO_CY8C95XX_INIT_PRIORITY
17	int "Init priority"
18	default 70
19	help
20	  Device driver initialization priority.
21
22endif # GPIO_CY8C95XX
23