1# MCP23S17 GPIO configuration options
2
3# Copyright (c) 2020 Geanix ApS
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig GPIO_MCP23S17
7	bool "MCP23S17 SPI-based GPIO chip"
8	depends on SPI
9	select HAS_DTS_GPIO
10	help
11	  Enable driver for MCP23S17 SPI-based GPIO chip.
12
13if GPIO_MCP23S17
14
15config GPIO_MCP23S17_INIT_PRIORITY
16	int "Init priority"
17	default 75
18	help
19	  Device driver initialization priority.
20
21endif #GPIO_MCP23S17
22