mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-18 07:25:22 +00:00
When the RTC support get added we had a select on HAS_RTC, however this Kconfig symbol didn't exist. Clean this up to match the pattern of HAS_MCUX_RTC. The driver now depends on that and the SoC selects it. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
15 lines
248 B
Plaintext
15 lines
248 B
Plaintext
# Kconfig - MCUXpresso SDK RTC
|
|
#
|
|
# Copyright (c) 2018, blik GmbH
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig RTC_MCUX
|
|
bool
|
|
prompt "MCUX RTC driver"
|
|
depends on RTC && HAS_MCUX_RTC
|
|
default n
|
|
help
|
|
Enable support for mcux rtc driver.
|