zephyr/drivers/pinmux/dev/Kconfig
Ulf Magnusson d7fa8b25aa drivers: pinmux: Kconfig: Remove redundant 'default n' properties
Bool symbols implicitly default to 'n'.

A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you
want to override a 'default y' on the base definition of the symbol. It
isn't used like that on any of these symbols though, and is
inconsistent.

This will make the auto-generated Kconfig documentation have "No
defaults. Implicitly defaults to n." as well, which is clearer than
'default n if ...'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2018-07-03 17:11:31 -04:00

43 lines
1.2 KiB
Plaintext

# Kconfig - Pinmux Dev configuration options
#
# Copyright (c) 2016 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
config PINMUX_DEV
bool "Configure pinmux for early board testing"
depends on PINMUX
help
Enables the use of the pinmux_set and pinmux_get functions for early
prototyping on new hardware. WARNING: When using these options, it
is possible to permanently damage the hardware.
config PINMUX_DEV_NAME
string "Configure pinmux for early board testing"
depends on PINMUX_DEV
default "PINMUX_DEV"
help
The name of the pinmux dev driver.
config PINMUX_DEV_ATMEL_SAM3X
bool "Enable pinmux dev driver for Atmel SAM3X boards"
depends on PINMUX_DEV && SOC_SERIES_SAM3X
help
Enables the pinmux dev driver for boards based on the
Atmel SAM3X family of microcontrollers.
config PINMUX_DEV_STM32
bool "Enable pinmux dev driver for the ST STM32 family."
depends on PINMUX_DEV && SOC_FAMILY_STM32
help
Enables the STM32 pinmux dev driver.
config PINMUX_DEV_ARM_V2M_BEETLE
bool "Enable pinmux dev driver for ARM V2M Beetle boards"
depends on PINMUX_DEV && SOC_SERIES_BEETLE
help
Enables the pinmux dev driver for boards based on the
ARM Beetle SoC MCUs.