1# Copyright (c) 2022 Matthias Freese
2# SPDX-License-Identifier: Apache-2.0
3
4config GPIO_SN74HC595
5	bool "SN74HC595 shift register as GPIO extender"
6	default y
7	depends on DT_HAS_TI_SN74HC595_ENABLED
8	depends on SPI
9	help
10	  Use SN74HC595 as GPIO extender
11
12if GPIO_SN74HC595
13
14config GPIO_SN74HC595_INIT_PRIORITY
15	int "Init priority"
16	default 71
17	help
18	  Device driver initialization priority.
19
20endif
21