zephyr/drivers/usb/uhc/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

43 lines
865 B
Plaintext

# Copyright (c) 2022 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
menuconfig UHC_DRIVER
bool "USB host controller drivers [EXPERIMENTAL]"
select EXPERIMENTAL
select NET_BUF
help
USB host controller driver.
if UHC_DRIVER
config UHC_XFER_COUNT
int "Number of transfers in the pool"
range 2 256
default 16
help
Number of UHC transfers available.
config UHC_BUF_COUNT
int "Number of buffers in the pool"
range 16 256
default 16
help
Number of UHC request buffers in the pool.
config UHC_BUF_POOL_SIZE
int "Memory available for buffers"
range 64 32768
default 1024
help
Total amount of memory available for UHC buffers.
module = UHC_DRIVER
module-str = uhc drv
source "subsys/logging/Kconfig.template.log_config"
source "drivers/usb/uhc/Kconfig.max3421e"
source "drivers/usb/uhc/Kconfig.virtual"
endif # UHC_DRIVER