1# PCF8574 GPIO configuration options
2
3# Copyright (c) 2022 Ithinx
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig GPIO_PCF8574
7	bool "PCF8574 I2C GPIO chip"
8	default y
9	depends on DT_HAS_NXP_PCF8574_ENABLED
10	select I2C
11	help
12	  Enable driver for PCF8574 I2C GPIO chip.
13
14config GPIO_PCF8574_INIT_PRIORITY
15	int "Init priority"
16	default 70
17	depends on GPIO_PCF8574
18	help
19	  Device driver initialization priority.
20