Utilize a code spell-checking tool to scan for and correct spelling errors in `Kconfig` files within the `drivers` directory. Additionally, incorporates a fix recommended by the reviewer. Signed-off-by: Pisit Sawangvonganan <pisit@ndrsolution.com>
21 lines
502 B
Plaintext
21 lines
502 B
Plaintext
# Copyright (c) 2024 Analog Devices Inc.
|
|
# Copyright (c) 2024 BayLibre SAS
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# MAX14906 GPIO configuration options
|
|
|
|
menuconfig GPIO_MAX14906
|
|
bool "MAX14906 GPIO driver"
|
|
default y
|
|
depends on DT_HAS_ADI_MAX14906_GPIO_ENABLED && SPI
|
|
help
|
|
Enable MAX14906 quad industrial digital
|
|
input/output with diagnostics
|
|
|
|
config GPIO_MAX14906_INIT_PRIORITY
|
|
int "Driver init priority"
|
|
default 99
|
|
depends on GPIO_MAX14906
|
|
help
|
|
Device driver initialization priority.
|