mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 03:12:32 +00:00
This driver includes pin-muxing functions and requires to have CONFIG_PINCTRL enabled. Automatically set this config when this driver is enabled. Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
13 lines
292 B
Plaintext
13 lines
292 B
Plaintext
# Copyright (C) 2023 BeagleBoard.org Foundation
|
|
# Copyright (C) 2023 S Prashanth
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config GPIO_DAVINCI
|
|
bool "Davinci GPIO Driver"
|
|
default y
|
|
depends on DT_HAS_TI_DAVINCI_GPIO_ENABLED
|
|
select PINCTRL
|
|
help
|
|
Enable the Davinci GPIO controller support.
|