The Kconfig help text for the SN74HC595 driver refers to the device as a "GPIO extender", which is inconsistent with the devicetree binding file (ti,sn74hc595.yaml) that describes it as a "GPIO expander". Signed-off-by: Hank Wang <wanghanchi2000@gmail.com>
20 lines
399 B
Text
20 lines
399 B
Text
# Copyright (c) 2022 Matthias Freese
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config GPIO_SN74HC595
|
|
bool "SN74HC595 shift register as GPIO expander"
|
|
default y
|
|
depends on DT_HAS_TI_SN74HC595_ENABLED
|
|
depends on SPI
|
|
help
|
|
Use SN74HC595 as GPIO expander
|
|
|
|
if GPIO_SN74HC595
|
|
|
|
config GPIO_SN74HC595_INIT_PRIORITY
|
|
int "Init priority"
|
|
default 71
|
|
help
|
|
Device driver initialization priority.
|
|
|
|
endif
|