mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-13 21:31:56 +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>
51 lines
783 B
Plaintext
51 lines
783 B
Plaintext
# Gecko GPIO configuration options
|
|
|
|
# Copyright (c) 2017 Christian Taedcke
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig GPIO_GECKO
|
|
bool "Gecko GPIO driver"
|
|
depends on HAS_SILABS_GECKO
|
|
select HAS_DTS_GPIO
|
|
select SOC_GECKO_GPIO
|
|
help
|
|
Enable the Gecko gpio driver.
|
|
|
|
if GPIO_GECKO
|
|
|
|
config GPIO_GECKO_COMMON_INIT_PRIORITY
|
|
int "Common initialization priority"
|
|
default 39
|
|
|
|
config GPIO_GECKO_PORTA
|
|
bool "Port A"
|
|
help
|
|
Enable Port A.
|
|
|
|
config GPIO_GECKO_PORTB
|
|
bool "Port B"
|
|
help
|
|
Enable Port B.
|
|
|
|
config GPIO_GECKO_PORTC
|
|
bool "Port C"
|
|
help
|
|
Enable Port C.
|
|
|
|
config GPIO_GECKO_PORTD
|
|
bool "Port D"
|
|
help
|
|
Enable Port D.
|
|
|
|
config GPIO_GECKO_PORTE
|
|
bool "Port E"
|
|
help
|
|
Enable Port E.
|
|
|
|
config GPIO_GECKO_PORTF
|
|
bool "Port F"
|
|
help
|
|
Enable Port F.
|
|
|
|
endif # GPIO_GECKO
|