zephyr/drivers/ps2/Kconfig
Henrik Brix Andersen c41dd36de2 drivers: kconfig: unify menuconfig title strings
Unify the drivers/*/Kconfig menuconfig title strings to the format
"<class> [(acronym)] [bus] drivers".

Including both the full name of the driver class and an acronym makes
menuconfig more user friendly as some of the acronyms are less well-known
than others. It also improves Kconfig search, both via menuconfig and via
the generated Kconfig documentation.

Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
2023-03-28 15:06:06 +02:00

29 lines
569 B
Plaintext

# PS/2 configuration options
# Copyright (c) 2019 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menuconfig PS2
bool "PS/2 drivers"
help
Include PS/2 drivers in system config.
if PS2
source "drivers/ps2/Kconfig.xec"
source "drivers/ps2/Kconfig.npcx"
module = PS2
module-str = ps2
source "subsys/logging/Kconfig.template.log_config"
config PS2_INIT_PRIORITY
int "PS/2 driver init priority"
default 40
help
PS/2 device driver initialization priority.
There isn't any critical component relying on this priority at
the moment.
endif # PS2