957e263120
Update gpio drivers to use DT_HAS_<compat>_ENABLED Kconfig symbol to expose the driver and enable it by default based on devicetree. We remove 'depend on' Kconfig for symbols that would be implied by the devicetree node existing. Signed-off-by: Kumar Gala <galak@kernel.org>
20 lines
453 B
Plaintext
20 lines
453 B
Plaintext
# STMPE1600 GPIO configuration options
|
|
|
|
# Copyright (c) 2021 Titouan Christophe
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig GPIO_STMPE1600
|
|
bool "STMPE1600 I2C-based GPIO chip"
|
|
default y
|
|
depends on DT_HAS_ST_STMPE1600_ENABLED
|
|
depends on I2C
|
|
help
|
|
Enable driver for STMPE1600 I2C-based GPIO chip.
|
|
|
|
config GPIO_STMPE1600_INIT_PRIORITY
|
|
int "Init priority"
|
|
default 70
|
|
depends on GPIO_STMPE1600
|
|
help
|
|
Device driver initialization priority.
|