mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-19 19:55:22 +00:00
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>
17 lines
483 B
Plaintext
17 lines
483 B
Plaintext
# TI CC2650 SoC pinmux driver.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config PINMUX_CC2650
|
|
bool "Pinmux driver for CC2650 SoC"
|
|
depends on SOC_SERIES_CC2650
|
|
depends on GPIO
|
|
depends on GPIO_CC2650
|
|
help
|
|
Enable pin multiplexer for CC2650 SoC.
|
|
|
|
For hardware reasons, the pinmux depends on the GPIO module
|
|
being activated; it must initialize *before* the pinmux does.
|
|
Please take care that the pinmux init priority value is *lower*
|
|
that the GPIO driver init priority.
|