mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 02:42:55 +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>
19 lines
459 B
Plaintext
19 lines
459 B
Plaintext
# PINMUX configuration options for SiFive Freedom SOC
|
|
|
|
# Copyright (c) 2017 Jean-Paul Etienne <fractalclone@gmail.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig PINMUX_SIFIVE
|
|
bool "SiFive Freedom SOC pinmux driver"
|
|
depends on SOC_SERIES_RISCV_SIFIVE_FREEDOM
|
|
help
|
|
Enable driver for the SiFive Freedom SOC pinmux driver
|
|
|
|
if PINMUX_SIFIVE
|
|
|
|
config PINMUX_SIFIVE_0_NAME
|
|
string "SIFIVE pinmux 0 driver name"
|
|
default "pinmux0"
|
|
|
|
endif # PINMUX_SIFIVE
|