bdff3e76e5
Update watchdog 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>
16 lines
361 B
Plaintext
16 lines
361 B
Plaintext
# Watchdog configuration options
|
|
#
|
|
# Copyright (c) 2019 Interay Solutions B.V.
|
|
# Copyright (c) 2019 Oane Kingma
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config WDT_GECKO
|
|
bool "Gecko series Watchdog (WDOG) Driver"
|
|
default y
|
|
depends on DT_HAS_SILABS_GECKO_WDOG_ENABLED
|
|
select SOC_GECKO_WDOG
|
|
default y
|
|
help
|
|
Enable WDOG driver for Silicon Labs Gecko MCUs.
|