From c41dd36de242830b45ca64a6abd1d8a148a13ad3 Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Mon, 27 Mar 2023 14:55:23 +0200 Subject: [PATCH] drivers: kconfig: unify menuconfig title strings Unify the drivers/*/Kconfig menuconfig title strings to the format " [(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 --- drivers/adc/Kconfig | 2 +- drivers/audio/Kconfig | 2 +- drivers/bbram/Kconfig | 2 +- drivers/bluetooth/Kconfig | 2 +- drivers/cache/Kconfig | 2 +- drivers/can/Kconfig | 2 +- drivers/clock_control/Kconfig | 2 +- drivers/coredump/Kconfig | 2 +- drivers/counter/Kconfig | 2 +- drivers/crypto/Kconfig | 2 +- drivers/dac/Kconfig | 2 +- drivers/dai/Kconfig | 2 +- drivers/disk/Kconfig | 2 +- drivers/display/Kconfig | 2 +- drivers/dma/Kconfig | 2 +- drivers/edac/Kconfig | 2 +- drivers/eeprom/Kconfig | 2 +- drivers/entropy/Kconfig | 2 +- drivers/espi/Kconfig | 2 +- drivers/ethernet/Kconfig | 2 +- drivers/flash/Kconfig | 2 +- drivers/fpga/Kconfig | 2 +- drivers/gpio/Kconfig | 2 +- drivers/hwinfo/Kconfig | 2 +- drivers/i2c/Kconfig | 2 +- drivers/i2s/Kconfig | 2 +- drivers/i3c/Kconfig | 2 +- drivers/ieee802154/Kconfig | 2 +- drivers/input/Kconfig | 2 +- drivers/interrupt_controller/Kconfig | 2 +- drivers/ipm/Kconfig | 2 +- drivers/kscan/Kconfig | 2 +- drivers/led/Kconfig | 2 +- drivers/led_strip/Kconfig | 2 +- drivers/lora/Kconfig | 2 +- drivers/mbox/Kconfig | 2 +- drivers/mdio/Kconfig | 2 +- drivers/memc/Kconfig | 2 +- drivers/mipi_dsi/Kconfig | 2 +- drivers/mm/Kconfig | 2 +- drivers/modem/Kconfig | 2 +- drivers/net/Kconfig | 2 +- drivers/neural_net/Kconfig | 2 +- drivers/peci/Kconfig | 2 +- drivers/ps2/Kconfig | 2 +- drivers/ptp_clock/Kconfig | 2 +- drivers/pwm/Kconfig | 2 +- drivers/retained_mem/Kconfig | 2 +- drivers/sdhc/Kconfig | 2 +- drivers/sensor/Kconfig | 2 +- drivers/serial/Kconfig | 2 +- drivers/smbus/Kconfig | 2 +- drivers/spi/Kconfig | 2 +- drivers/syscon/Kconfig | 2 +- drivers/timer/Kconfig | 2 +- drivers/usb/udc/Kconfig | 2 +- drivers/usb/uhc/Kconfig | 2 +- drivers/video/Kconfig | 2 +- drivers/virtualization/Kconfig | 2 +- drivers/w1/Kconfig | 2 +- drivers/watchdog/Kconfig | 2 +- drivers/wifi/Kconfig | 2 +- 62 files changed, 62 insertions(+), 62 deletions(-) diff --git a/drivers/adc/Kconfig b/drivers/adc/Kconfig index 149f5172c5..87487ac79f 100644 --- a/drivers/adc/Kconfig +++ b/drivers/adc/Kconfig @@ -7,7 +7,7 @@ # ADC options # menuconfig ADC - bool "ADC drivers" + bool "Analog-to-Digital Converter (ADC) drivers" # All platforms that implement the ADC driver are now required to # provide relevant DTS entries. help diff --git a/drivers/audio/Kconfig b/drivers/audio/Kconfig index bcc00443b1..2eb98256aa 100644 --- a/drivers/audio/Kconfig +++ b/drivers/audio/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig AUDIO - bool "Support for Audio" + bool "Audio drivers" help Enable support for Audio diff --git a/drivers/bbram/Kconfig b/drivers/bbram/Kconfig index 84cebf27ec..011c90e03d 100644 --- a/drivers/bbram/Kconfig +++ b/drivers/bbram/Kconfig @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig BBRAM - bool "Battery-backed RAM drivers" + bool "Battery-backed RAM (BBRAM) drivers" help Enable BBRAM (battery-backed RAM) driver configuration. diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig index b68f20ec25..46bf62bb1a 100644 --- a/drivers/bluetooth/Kconfig +++ b/drivers/bluetooth/Kconfig @@ -10,7 +10,7 @@ # Controller support is an HCI driver in itself, so these HCI driver # options are only applicable if controller support hasn't been enabled. menuconfig BT_DRIVERS - bool "Bluetooth Drivers" + bool "Bluetooth drivers" default y depends on BT && !BT_CTLR diff --git a/drivers/cache/Kconfig b/drivers/cache/Kconfig index f017d9068e..834cc49e18 100644 --- a/drivers/cache/Kconfig +++ b/drivers/cache/Kconfig @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig CACHE - bool "External cache controllers drivers" + bool "External cache controller drivers" default y if CACHE_MANAGEMENT help Enable support for external cache controllers drivers diff --git a/drivers/can/Kconfig b/drivers/can/Kconfig index 9875c3d1b9..c025c134f9 100644 --- a/drivers/can/Kconfig +++ b/drivers/can/Kconfig @@ -7,7 +7,7 @@ # CAN options # menuconfig CAN - bool "CAN Drivers" + bool "Controller Area Network (CAN) drivers" help Enable CAN Driver Configuration diff --git a/drivers/clock_control/Kconfig b/drivers/clock_control/Kconfig index 1f2a2347fa..114b9f60f5 100644 --- a/drivers/clock_control/Kconfig +++ b/drivers/clock_control/Kconfig @@ -7,7 +7,7 @@ # Clock controller drivers # menuconfig CLOCK_CONTROL - bool "Hardware clock controller support" + bool "Clock controller drivers" help Enable support for hardware clock controller. Such hardware can provide clock for other subsystem, and thus can be also used for diff --git a/drivers/coredump/Kconfig b/drivers/coredump/Kconfig index d27dd9c63a..a3e1affcd9 100644 --- a/drivers/coredump/Kconfig +++ b/drivers/coredump/Kconfig @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig COREDUMP_DEVICE - bool "Coredump pseudo-device driver" + bool "Coredump pseudo-device drivers" help Enable support for a pseudo-device to help capturing desired data into core dumps. diff --git a/drivers/counter/Kconfig b/drivers/counter/Kconfig index 14169ef03f..ff983fb4f0 100644 --- a/drivers/counter/Kconfig +++ b/drivers/counter/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig COUNTER - bool "Counter Drivers" + bool "Counter drivers" help Enable support for counter and timer. diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig index c9c5a203bd..245fe48915 100644 --- a/drivers/crypto/Kconfig +++ b/drivers/crypto/Kconfig @@ -7,7 +7,7 @@ # CRYPTO options # menuconfig CRYPTO - bool "Crypto Drivers" + bool "Crypto drivers" if CRYPTO diff --git a/drivers/dac/Kconfig b/drivers/dac/Kconfig index 7902abeaac..7b54572146 100644 --- a/drivers/dac/Kconfig +++ b/drivers/dac/Kconfig @@ -7,7 +7,7 @@ # DAC options # menuconfig DAC - bool "DAC drivers" + bool "Digital-to-Analog Converter (DAC) drivers" help Enable DAC (Digital to Analog Converter) driver configuration. diff --git a/drivers/dai/Kconfig b/drivers/dai/Kconfig index 09395cca72..770b528da6 100644 --- a/drivers/dai/Kconfig +++ b/drivers/dai/Kconfig @@ -7,7 +7,7 @@ # DAI Drivers # menuconfig DAI - bool "DAI drivers" + bool "Digital Audio Interface (DAI) drivers" help Enable support for the DAI interface drivers. diff --git a/drivers/disk/Kconfig b/drivers/disk/Kconfig index 4672bb2e74..38e173e681 100644 --- a/drivers/disk/Kconfig +++ b/drivers/disk/Kconfig @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig DISK_DRIVERS - bool "Disk Drivers" + bool "Disk drivers" help Disk Driver configuration diff --git a/drivers/display/Kconfig b/drivers/display/Kconfig index 9323683bb9..51800562ea 100644 --- a/drivers/display/Kconfig +++ b/drivers/display/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig DISPLAY - bool "Display Drivers" + bool "Display controller drivers" help Enable display drivers diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 76daa4cabe..ad0df00b2c 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -7,7 +7,7 @@ # DMA options # menuconfig DMA - bool "DMA driver Configuration" + bool "Direct Memory Access (DMA) drivers" if DMA config DMA_64BIT diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig index ee8763ccb5..45e499a749 100644 --- a/drivers/edac/Kconfig +++ b/drivers/edac/Kconfig @@ -4,7 +4,7 @@ # EDAC configuration options menuconfig EDAC - bool "Error Detection and Correction (EDAC) Drivers" + bool "Error Detection and Correction (EDAC) drivers" help Enable Error Detection and Correction (EDAC) driver. diff --git a/drivers/eeprom/Kconfig b/drivers/eeprom/Kconfig index f4f1ac55c5..e5a55bad03 100644 --- a/drivers/eeprom/Kconfig +++ b/drivers/eeprom/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig EEPROM - bool "EEPROM hardware support" + bool "Electrically Erasable Programmable Read-Only Memory (EEPROM) drivers" help Enable support for EEPROM hardware. diff --git a/drivers/entropy/Kconfig b/drivers/entropy/Kconfig index badc4e812e..e932f62c6b 100644 --- a/drivers/entropy/Kconfig +++ b/drivers/entropy/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig ENTROPY_GENERATOR - bool "Entropy Drivers" + bool "Entropy drivers" help Include entropy drivers in system config. diff --git a/drivers/espi/Kconfig b/drivers/espi/Kconfig index f8ee937af5..0a8f6173b8 100644 --- a/drivers/espi/Kconfig +++ b/drivers/espi/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig ESPI - bool "ESPI Driver" + bool "Enhanced Serial Peripheral Interface (eSPI) bus drivers" help Enable ESPI Driver. diff --git a/drivers/ethernet/Kconfig b/drivers/ethernet/Kconfig index f7ee67f075..2c2e5564d2 100644 --- a/drivers/ethernet/Kconfig +++ b/drivers/ethernet/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig ETH_DRIVER - bool "Ethernet Drivers" + bool "Ethernet drivers" default y depends on NET_L2_ETHERNET diff --git a/drivers/flash/Kconfig b/drivers/flash/Kconfig index bf6fa61c43..17fd2563f7 100644 --- a/drivers/flash/Kconfig +++ b/drivers/flash/Kconfig @@ -30,7 +30,7 @@ config FLASH_JESD216 devices to enable building a common support module. menuconfig FLASH - bool "Flash hardware support" + bool "Flash drivers" help Enable support for the flash hardware. diff --git a/drivers/fpga/Kconfig b/drivers/fpga/Kconfig index 6657a528fa..de5450a140 100644 --- a/drivers/fpga/Kconfig +++ b/drivers/fpga/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig FPGA - bool "FPGA Drivers" + bool "Field-Programmable Gate Array (FPGA) drivers" help Enable support for FPGA drivers. diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 3e6d21ef6c..c10c7ea1ee 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig GPIO - bool "GPIO Drivers" + bool "General-Purpose Input/Output (GPIO) drivers" help Include GPIO drivers in system config diff --git a/drivers/hwinfo/Kconfig b/drivers/hwinfo/Kconfig index ae53d18594..6737438ed5 100644 --- a/drivers/hwinfo/Kconfig +++ b/drivers/hwinfo/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig HWINFO - bool "Hardware Information driver" + bool "Hardware Information drivers" help Enable hwinfo driver. diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig index f80d6d728c..18f843f43e 100644 --- a/drivers/i2c/Kconfig +++ b/drivers/i2c/Kconfig @@ -7,7 +7,7 @@ # I2C options # menuconfig I2C - bool "I2C Drivers" + bool "Inter-Integrated Circuit (I2C) bus drivers" help Enable I2C Driver Configuration diff --git a/drivers/i2s/Kconfig b/drivers/i2s/Kconfig index c194ab5bc0..37e8e24138 100644 --- a/drivers/i2s/Kconfig +++ b/drivers/i2s/Kconfig @@ -7,7 +7,7 @@ # I2S Drivers # menuconfig I2S - bool "I2S bus drivers" + bool "Inter-IC Sound (I2S) bus drivers" help Enable support for the I2S (Inter-IC Sound) hardware bus. diff --git a/drivers/i3c/Kconfig b/drivers/i3c/Kconfig index 8d4d06b279..f4a343632a 100644 --- a/drivers/i3c/Kconfig +++ b/drivers/i3c/Kconfig @@ -5,7 +5,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig I3C - bool "I3C Drivers" + bool "Improved Inter-Integrated Circuit (I3C) bus drivers" help Enable I3C Driver Configuration diff --git a/drivers/ieee802154/Kconfig b/drivers/ieee802154/Kconfig index 327d7e2d2d..d5673ff282 100644 --- a/drivers/ieee802154/Kconfig +++ b/drivers/ieee802154/Kconfig @@ -7,7 +7,7 @@ # IEEE 802.15.4 options # menuconfig IEEE802154 - bool "IEEE 802.15.4 drivers options" + bool "IEEE 802.15.4 drivers" depends on NETWORKING default y if NET_L2_PHY_IEEE802154 diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index f62fd27fac..6474c64aad 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -3,7 +3,7 @@ if INPUT -menu "Input Drivers" +menu "Input drivers" source "drivers/input/Kconfig.gpio_keys" diff --git a/drivers/interrupt_controller/Kconfig b/drivers/interrupt_controller/Kconfig index d436bb80b8..31b3cad626 100644 --- a/drivers/interrupt_controller/Kconfig +++ b/drivers/interrupt_controller/Kconfig @@ -3,7 +3,7 @@ # Copyright (c) 2015 Intel Corporation # SPDX-License-Identifier: Apache-2.0 -menu "Interrupt Controllers" +menu "Interrupt controller drivers" config ARCV2_INTERRUPT_UNIT bool "ARCv2 Interrupt Unit" diff --git a/drivers/ipm/Kconfig b/drivers/ipm/Kconfig index 6ac1eb3986..c693213496 100644 --- a/drivers/ipm/Kconfig +++ b/drivers/ipm/Kconfig @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig IPM - bool "IPM drivers" + bool "Inter-Processor Mailbox (IPM) drivers" help Include interrupt-based inter-processor mailboxes drivers in system configuration diff --git a/drivers/kscan/Kconfig b/drivers/kscan/Kconfig index f8cebd2b3e..b19ae865c1 100644 --- a/drivers/kscan/Kconfig +++ b/drivers/kscan/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig KSCAN - bool "Keyboard Scan Drivers" + bool "Keyboard scan drivers" help Include Keyboard scan drivers in system config. diff --git a/drivers/led/Kconfig b/drivers/led/Kconfig index a93e4dc83c..7c4f5ced08 100644 --- a/drivers/led/Kconfig +++ b/drivers/led/Kconfig @@ -4,7 +4,7 @@ # Top-level configuration file for LED drivers. menuconfig LED - bool "LED drivers" + bool "Light-Emitting Diode (LED) drivers" help Include LED drivers in the system configuration. diff --git a/drivers/led_strip/Kconfig b/drivers/led_strip/Kconfig index e1893da1a9..269657dd0b 100644 --- a/drivers/led_strip/Kconfig +++ b/drivers/led_strip/Kconfig @@ -5,7 +5,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig LED_STRIP - bool "LED strip drivers" + bool "Light-Emitting Diode (LED) strip drivers" help Include LED strip drivers in the system configuration. diff --git a/drivers/lora/Kconfig b/drivers/lora/Kconfig index b04a477509..ddc1e50e62 100644 --- a/drivers/lora/Kconfig +++ b/drivers/lora/Kconfig @@ -7,7 +7,7 @@ # Top-level configuration file for LORA drivers. menuconfig LORA - bool "LoRa support [EXPERIMENTAL]" + bool "LoRa drivers [EXPERIMENTAL]" select POLL select EXPERIMENTAL help diff --git a/drivers/mbox/Kconfig b/drivers/mbox/Kconfig index 38cb08af4e..58dd92f208 100644 --- a/drivers/mbox/Kconfig +++ b/drivers/mbox/Kconfig @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig MBOX - bool "MBOX drivers" + bool "Multi-Channel Inter-Processor Mailbox (MBOX) drivers" help Include multi-channel interrupt-based inter-processor mailboxes drivers in system configuration diff --git a/drivers/mdio/Kconfig b/drivers/mdio/Kconfig index 603efb5ee6..4fa8b9dd08 100644 --- a/drivers/mdio/Kconfig +++ b/drivers/mdio/Kconfig @@ -7,7 +7,7 @@ # MDIO options # menuconfig MDIO - bool "MDIO Drivers" + bool "Management Data Input/Output (MDIO) drivers" help Enable MDIO Driver Configuration diff --git a/drivers/memc/Kconfig b/drivers/memc/Kconfig index 5912f7a185..56fc44bb99 100644 --- a/drivers/memc/Kconfig +++ b/drivers/memc/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig MEMC - bool "Memory controllers [EXPERIMENTAL]" + bool "Memory controller drivers [EXPERIMENTAL]" select EXPERIMENTAL help Add support for memory controllers diff --git a/drivers/mipi_dsi/Kconfig b/drivers/mipi_dsi/Kconfig index 35307b7655..5e4326e820 100644 --- a/drivers/mipi_dsi/Kconfig +++ b/drivers/mipi_dsi/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig MIPI_DSI - bool "MIPI-DSI Host Controllers [EXPERIMENTAL]" + bool "MIPI-DSI Host Controller drivers [EXPERIMENTAL]" select EXPERIMENTAL help Add support for MIPI-DSI host controllers diff --git a/drivers/mm/Kconfig b/drivers/mm/Kconfig index 4cf229cff6..15c418c78a 100644 --- a/drivers/mm/Kconfig +++ b/drivers/mm/Kconfig @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig MM_DRV - bool "Memory Management Drivers [EXPERIMENTAL]" + bool "Memory Management drivers [EXPERIMENTAL]" select EXPERIMENTAL select KERNEL_VM_SUPPORT help diff --git a/drivers/modem/Kconfig b/drivers/modem/Kconfig index 02e140fb4a..2ccaf7f78e 100644 --- a/drivers/modem/Kconfig +++ b/drivers/modem/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig MODEM - bool "Modem Drivers" + bool "Modem drivers" help Enable config options for modem drivers. diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index dc4ac6ccbb..f6e0faa334 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig NET_DRIVERS - bool "Network Drivers" + bool "Network drivers" if NET_DRIVERS diff --git a/drivers/neural_net/Kconfig b/drivers/neural_net/Kconfig index b6fbd63e5d..001893744d 100644 --- a/drivers/neural_net/Kconfig +++ b/drivers/neural_net/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig NEURAL_NET_ACCEL - bool "Neural Network Accelerator Drivers" + bool "Neural Network Accelerator drivers" help Enable support for Neural Network Accelerators diff --git a/drivers/peci/Kconfig b/drivers/peci/Kconfig index 120006ce84..41e15f10ca 100644 --- a/drivers/peci/Kconfig +++ b/drivers/peci/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig PECI - bool "PECI Driver" + bool "Platform Environment Control Interface (PECI) drivers" help Include PECI drivers in system config. diff --git a/drivers/ps2/Kconfig b/drivers/ps2/Kconfig index 8677ada483..5233afdf63 100644 --- a/drivers/ps2/Kconfig +++ b/drivers/ps2/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig PS2 - bool "PS/2 Drivers" + bool "PS/2 drivers" help Include PS/2 drivers in system config. diff --git a/drivers/ptp_clock/Kconfig b/drivers/ptp_clock/Kconfig index fbbbff10d9..9417d7f063 100644 --- a/drivers/ptp_clock/Kconfig +++ b/drivers/ptp_clock/Kconfig @@ -2,6 +2,6 @@ # SPDX-License-Identifier: Apache-2.0 config PTP_CLOCK - bool "Precision Time Protocol Clock driver support" + bool "Precision Time Protocol (PTP) Clock drivers" help Enable options for Precision Time Protocol Clock drivers. diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig index e20de110e8..021ad30803 100644 --- a/drivers/pwm/Kconfig +++ b/drivers/pwm/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig PWM - bool "PWM (Pulse Width Modulation) Drivers" + bool "Pulse Width Modulation (PWM) drivers" help Enable config options for PWM drivers. diff --git a/drivers/retained_mem/Kconfig b/drivers/retained_mem/Kconfig index c8a9862dfe..35d2184963 100644 --- a/drivers/retained_mem/Kconfig +++ b/drivers/retained_mem/Kconfig @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig RETAINED_MEM - bool "Retained memory support" + bool "Retained memory drivers" help Enables support for drivers that can retain their data whilst the device is powered (may be lost in low power states). diff --git a/drivers/sdhc/Kconfig b/drivers/sdhc/Kconfig index f65f928591..0969c6fa73 100644 --- a/drivers/sdhc/Kconfig +++ b/drivers/sdhc/Kconfig @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig SDHC - bool "SDHC drivers" + bool "Secure Digital High Capacity (SDHC) drivers" help Include drivers for SD host controller diff --git a/drivers/sensor/Kconfig b/drivers/sensor/Kconfig index 11ae4f0265..ebfdd71d6c 100644 --- a/drivers/sensor/Kconfig +++ b/drivers/sensor/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig SENSOR - bool "Sensor Drivers" + bool "Sensor drivers" help Include sensor drivers in system config diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index e3657a6eba..38ab4a9e41 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig SERIAL - bool "Serial Drivers" + bool "Serial drivers" help Enable options for serial drivers. diff --git a/drivers/smbus/Kconfig b/drivers/smbus/Kconfig index 927c70c1c3..e4581fae86 100644 --- a/drivers/smbus/Kconfig +++ b/drivers/smbus/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig SMBUS - bool "SMBus Drivers" + bool "System Management Bus (SMBus) drivers" help Enable SMBus Driver Configuration diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 79708f6b42..2c2bb69e2f 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -7,7 +7,7 @@ # SPI Drivers # menuconfig SPI - bool "SPI hardware bus support" + bool "Serial Peripheral Interface (SPI) bus drivers" help Enable support for the SPI hardware bus. diff --git a/drivers/syscon/Kconfig b/drivers/syscon/Kconfig index ad8442b3dc..1989015820 100644 --- a/drivers/syscon/Kconfig +++ b/drivers/syscon/Kconfig @@ -7,7 +7,7 @@ # SYSCON options # menuconfig SYSCON - bool "SYSCON (System Controller) drivers" + bool "System Controller (SYSCON) drivers" help SYSCON (System Controller) drivers. System controller node represents a register region containing a set of miscellaneous registers. The diff --git a/drivers/timer/Kconfig b/drivers/timer/Kconfig index 7a9b1f901f..a642f004ad 100644 --- a/drivers/timer/Kconfig +++ b/drivers/timer/Kconfig @@ -7,7 +7,7 @@ if SYS_CLOCK_EXISTS -menu "Timer Drivers" +menu "Timer drivers" config TIMER_HAS_64BIT_CYCLE_COUNTER bool diff --git a/drivers/usb/udc/Kconfig b/drivers/usb/udc/Kconfig index 9c80af70f1..566c93bef6 100644 --- a/drivers/usb/udc/Kconfig +++ b/drivers/usb/udc/Kconfig @@ -3,7 +3,7 @@ menuconfig UDC_DRIVER - bool "USB device controller driver [EXPERIMENTAL]" + bool "USB device controller drivers [EXPERIMENTAL]" select EXPERIMENTAL select NET_BUF help diff --git a/drivers/usb/uhc/Kconfig b/drivers/usb/uhc/Kconfig index 65b679724d..e6da1d4d3d 100644 --- a/drivers/usb/uhc/Kconfig +++ b/drivers/usb/uhc/Kconfig @@ -3,7 +3,7 @@ menuconfig UHC_DRIVER - bool "USB host controller driver [EXPERIMENTAL]" + bool "USB host controller drivers [EXPERIMENTAL]" select EXPERIMENTAL select NET_BUF help diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 40f5855f42..b02680b224 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -7,7 +7,7 @@ # VIDEO Drivers # menuconfig VIDEO - bool "VIDEO hardware support" + bool "Video drivers" help Enable support for the VIDEO. diff --git a/drivers/virtualization/Kconfig b/drivers/virtualization/Kconfig index a5ac6820a3..815484b4ed 100644 --- a/drivers/virtualization/Kconfig +++ b/drivers/virtualization/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig VIRTUALIZATION - bool "Virtualization guests drivers" + bool "Virtualization guest drivers" help This contains various drivers meant to support and expose features when Zephyr is running as a guest in a virtualized or emulated diff --git a/drivers/w1/Kconfig b/drivers/w1/Kconfig index f14f024dd4..d1cf835075 100644 --- a/drivers/w1/Kconfig +++ b/drivers/w1/Kconfig @@ -5,7 +5,7 @@ menuconfig W1 bool - prompt "1-Wire Drivers" + prompt "1-Wire bus drivers" select CRC help Enable 1-Wire Drivers diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index e8db5f5c29..77a9ac1547 100644 --- a/drivers/watchdog/Kconfig +++ b/drivers/watchdog/Kconfig @@ -5,7 +5,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig WATCHDOG - bool "Watchdog Support" + bool "Watchdog drivers" help Include support for watchdogs. diff --git a/drivers/wifi/Kconfig b/drivers/wifi/Kconfig index ea6245b33b..4bb4197bed 100644 --- a/drivers/wifi/Kconfig +++ b/drivers/wifi/Kconfig @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 menuconfig WIFI - bool "Wi-Fi Drivers" + bool "Wi-Fi drivers" if WIFI