From 4e6041a46c536e602c30d7f2cf4cc079eae626c7 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Tue, 14 Feb 2023 01:17:13 +0800 Subject: [PATCH] system: Change DRIVER_NOTExxx to DRIVERS_NOTExxx follow the kernel side change: https://github.com/apache/nuttx/pull/8531 Signed-off-by: Xiang Xiao --- examples/watcher/Kconfig | 2 +- system/sched_note/Kconfig | 2 +- system/trace/Kconfig | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/watcher/Kconfig b/examples/watcher/Kconfig index fa8ceeb96..adbadaeb3 100644 --- a/examples/watcher/Kconfig +++ b/examples/watcher/Kconfig @@ -6,7 +6,7 @@ config EXAMPLES_WATCHER tristate "Watcher example" default n - depends on DRIVER_NOTERAM + depends on DRIVERS_NOTERAM depends on FSUTILS_MKFATFS ---help--- Enable the watcher example. The watcher is a task that will monitor diff --git a/system/sched_note/Kconfig b/system/sched_note/Kconfig index 832af78e2..b8153e56a 100644 --- a/system/sched_note/Kconfig +++ b/system/sched_note/Kconfig @@ -6,7 +6,7 @@ config SYSTEM_NOTE tristate "Scheduler monitor" default n - depends on DRIVER_NOTERAM + depends on DRIVERS_NOTERAM ---help--- Enable the schedler instrumentation monitor diff --git a/system/trace/Kconfig b/system/trace/Kconfig index 49dfe92e8..4a0159438 100644 --- a/system/trace/Kconfig +++ b/system/trace/Kconfig @@ -6,7 +6,7 @@ config SYSTEM_TRACE tristate "Trace command" default n - depends on DRIVER_NOTECTL + depends on DRIVERS_NOTECTL ---help--- Enable support for the trace command.