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 default y 9 depends on DT_HAS_MICROCHIP_MCP23S17_ENABLED 10 depends on SPI 11 help 12 Enable driver for MCP23S17 SPI-based GPIO chip. 13 14if GPIO_MCP23S17 15 16config GPIO_MCP23S17_INIT_PRIORITY 17 int "Init priority" 18 default 75 19 help 20 Device driver initialization priority. 21 22endif #GPIO_MCP23S17 23