mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-22 18:35:54 +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>
46 lines
1004 B
Plaintext
46 lines
1004 B
Plaintext
# Microchip XEC GPIO configuration options
|
|
|
|
# Copyright (c) 2019 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig GPIO_XEC
|
|
bool "XEC Microchip GPIO driver"
|
|
depends on SOC_FAMILY_MEC
|
|
select HAS_DTS_GPIO
|
|
help
|
|
Enable the Microchip XEC gpio driver.
|
|
|
|
if GPIO_XEC
|
|
|
|
config GPIO_XEC_GPIO000_036
|
|
bool "GPIO 000-036"
|
|
help
|
|
Enable GPIO 000-036 or what would be equivalent to PortA.
|
|
|
|
config GPIO_XEC_GPIO040_076
|
|
bool "GPIO 040-036"
|
|
help
|
|
Enable GPIO 040-076 or what would be equivalent to Port B
|
|
|
|
config GPIO_XEC_GPIO100_136
|
|
bool "GPIO 100-136"
|
|
help
|
|
Enable GPIO 100-136 or what would be equivalent to Port C
|
|
|
|
config GPIO_XEC_GPIO140_176
|
|
bool "GPIO 140-176"
|
|
help
|
|
Enable GPIO 140-176 or what would be equivalent to Port C
|
|
|
|
config GPIO_XEC_GPIO200_236
|
|
bool "GPIO 200-236"
|
|
help
|
|
Enable GPIO 200-236 or what would be equivalent to Port D
|
|
|
|
config GPIO_XEC_GPIO240_276
|
|
bool "GPIO 240-276"
|
|
help
|
|
Enable GPIO 240-276 or what would be equivalent to Port E
|
|
|
|
endif # GPIO_XEC
|