1# PCF857x GPIO configuration options
2
3# Copyright (c) 2022 Ithinx
4# Copyright (c) 2023 Mr Beam Lasers GmbH
5# Copyright (c) 2023 Amrith Venkat Kesavamoorthi <amrith@mr-beam.org>
6# SPDX-License-Identifier: Apache-2.0
7
8menuconfig GPIO_PCF857X
9	bool "PCF857X I2C GPIO chip"
10	default y
11	depends on DT_HAS_NXP_PCF857X_ENABLED
12	select I2C
13	help
14	  Enable driver for PCF857X I2C GPIO chip.
15
16config GPIO_PCF857X_INIT_PRIORITY
17	int "Init priority"
18	default 70
19	depends on GPIO_PCF857X
20	help
21	  Device driver initialization priority.
22