zephyr/drivers/Kconfig
Ulf Magnusson bd6e04411e kconfig: Clean up header comments and make them consistent
Use this short header style in all Kconfig files:

    # <description>

    # <copyright>
    # <license>

    ...

Also change all <description>s from

    # Kconfig[.extension] - Foo-related options

to just

    # Foo-related options

It's clear enough that it's about Kconfig.

The <description> cleanup was done with this command, along with some
manual cleanup (big letter at the start, etc.)

    git ls-files '*Kconfig*' | \
        xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-11-04 17:31:27 -05:00

91 lines
1.5 KiB
Plaintext

# drivers configuration options
# Copyright (c) 2015 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menu "Device Drivers"
source "drivers/bluetooth/Kconfig"
source "drivers/ieee802154/Kconfig"
source "drivers/console/Kconfig"
source "drivers/ethernet/Kconfig"
source "drivers/net/Kconfig"
source "drivers/serial/Kconfig"
source "drivers/interrupt_controller/Kconfig"
source "drivers/timer/Kconfig"
source "drivers/entropy/Kconfig"
source "drivers/pcie/Kconfig"
source "drivers/gpio/Kconfig"
source "drivers/interrupt_controller/Kconfig.shared_irq"
source "drivers/spi/Kconfig"
source "drivers/i2c/Kconfig"
source "drivers/i2s/Kconfig"
source "drivers/pwm/Kconfig"
source "drivers/pinmux/Kconfig"
source "drivers/adc/Kconfig"
source "drivers/watchdog/Kconfig"
source "drivers/clock_control/Kconfig"
source "drivers/ptp_clock/Kconfig"
source "drivers/ipm/Kconfig"
source "drivers/flash/Kconfig"
source "drivers/sensor/Kconfig"
source "drivers/counter/Kconfig"
source "drivers/dma/Kconfig"
source "drivers/usb/Kconfig"
source "drivers/crypto/Kconfig"
source "drivers/display/Kconfig"
source "drivers/led_strip/Kconfig"
source "drivers/wifi/Kconfig"
source "drivers/led/Kconfig"
source "drivers/can/Kconfig"
source "drivers/modem/Kconfig"
source "drivers/audio/Kconfig"
source "drivers/neural_net/Kconfig"
source "drivers/hwinfo/Kconfig"
source "drivers/espi/Kconfig"
source "drivers/ps2/Kconfig"
source "drivers/kscan/Kconfig"
source "drivers/video/Kconfig"
endmenu