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>
31 lines
801 B
Plaintext
31 lines
801 B
Plaintext
# Auxiliary Display drivers
|
|
|
|
# Copyright (c) 2022 Jamie McCrae
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig AUXDISPLAY
|
|
bool "Auxiliary (textual) Display Drivers"
|
|
help
|
|
Enable auxiliary/textual display drivers (e.g. alphanumerical displays)
|
|
|
|
if AUXDISPLAY
|
|
|
|
config AUXDISPLAY_INIT_PRIORITY
|
|
int "Auxiliary display devices init priority"
|
|
default 85
|
|
help
|
|
Auxiliary (textual) display devices initialization priority.
|
|
|
|
module = AUXDISPLAY
|
|
module-str = auxdisplay
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/auxdisplay/Kconfig.gpio"
|
|
source "drivers/auxdisplay/Kconfig.hd44780"
|
|
source "drivers/auxdisplay/Kconfig.itron"
|
|
source "drivers/auxdisplay/Kconfig.jhd1313"
|
|
source "drivers/auxdisplay/Kconfig.pt6314"
|
|
source "drivers/auxdisplay/Kconfig.serlcd"
|
|
|
|
endif # AUXDISPLAY
|