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>
diff --git a/drivers/adc/Kconfig b/drivers/adc/Kconfig
index 149f517..87487ac 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 bcc0044..2eb9825 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 84cebf2..011c90e 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 b68f20e..46bf62b 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 f017d90..834cc49 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 9875c3d..c025c13 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 1f2a234..114b9f6 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 d27dd9c..a3e1aff 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 14169ef..ff983fb 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 c9c5a20..245fe48 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 7902abe..7b54572 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 09395cc..770b528 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 4672bb2..38e173e 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 9323683..5180056 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 76daa4c..ad0df00 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 ee8763c..45e499a 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 f4f1ac5..e5a55ba 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 badc4e8..e932f62 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 f8ee937..0a8f617 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 f7ee67f..2c2e556 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 bf6fa61..17fd256 100644
--- a/drivers/flash/Kconfig
+++ b/drivers/flash/Kconfig
@@ -30,7 +30,7 @@
 	 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 6657a52..de5450a 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 3e6d21e..c10c7ea 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 ae53d18..6737438 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 f80d6d7..18f843f 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 c194ab5..37e8e24 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 8d4d06b..f4a3436 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 327d7e2..d5673ff 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 f62fd27..6474c64 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 d436bb8..31b3cad 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 6ac1eb3..c693213 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 f8cebd2..b19ae86 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 a93e4dc..7c4f5ce 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 e1893da..269657d 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 b04a477..ddc1e50 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 38cb08a..58dd92f 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 603efb5..4fa8b9d 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 5912f7a..56fc44b 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 35307b7..5e4326e 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 4cf229c..15c418c 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 02e140f..2ccaf7f 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 dc4ac6c..f6e0faa 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 b6fbd63..0018937 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 120006c..41e15f1 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 8677ada..5233afd 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 fbbbff1..9417d7f 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 e20de11..021ad30 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 c8a9862..35d2184 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 f65f928..0969c6f 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 11ae4f0..ebfdd71 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 e3657a6..38ab4a9 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 927c70c..e4581fa 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 79708f6..2c2bb69 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 ad8442b..1989015 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 7a9b1f9..a642f00 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 9c80af7..566c93b 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 65b6797..e6da1d4 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 40f5855..b02680b 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 a5ac682..815484b 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 f14f024..d1cf835 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 e8db5f5..77a9ac1 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 ea6245b..4bb4197 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