drivers/note: fix build break by note rename change
Regression by: | commit 4e6041a46c536e602c30d7f2cf4cc079eae626c7 (HEAD, origin/master, origin/HEAD) | Author: Xiang Xiao <xiaoxiang@xiaomi.com> | Date: Tue Feb 14 01:17:13 2023 +0800 | | system: Change DRIVER_NOTExxx to DRIVERS_NOTExxx | | follow the kernel side change: https://github.com/apache/nuttx/pull/8531 | | Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com> Signed-off-by: chao an <anchao@xiaomi.com>
This commit is contained in:
parent
4e6041a46c
commit
cf4db3f62d
@ -2031,7 +2031,7 @@ specific watchdog hardware settings might require additional settings).
|
||||
- `CONFIG_WATCHDOG` – Enables watchdog timer support.
|
||||
- `CONFIG_NSH_BUILTIN_APPS` – Build this example an NSH built-in
|
||||
function.
|
||||
- `CONFIG_DRIVER_NOTE` and `CONFIG_SCHED_INSTRUMENTATION` – Allows the watcher
|
||||
- `CONFIG_DRIVERS_NOTE` and `CONFIG_SCHED_INSTRUMENTATION` – Allows the watcher
|
||||
to get the tasks' names.
|
||||
- `CONFIG_FS_FAT` – Allows the creation of a FAT filesystem on the ramdisk
|
||||
to create a file with all the necessary info for the watched tasks.
|
||||
|
@ -27,7 +27,7 @@ PRIORITY = $(CONFIG_SYSTEM_TRACE_PRIORITY)
|
||||
STACKSIZE = $(CONFIG_SYSTEM_TRACE_STACKSIZE)
|
||||
MODULE = $(CONFIG_SYSTEM_TRACE)
|
||||
|
||||
ifeq ($(CONFIG_DRIVER_NOTERAM),y)
|
||||
ifeq ($(CONFIG_DRIVERS_NOTERAM),y)
|
||||
CSRCS = trace_dump.c
|
||||
endif
|
||||
|
||||
|
@ -138,7 +138,7 @@ static int trace_cmd_start(int index, int argc, FAR char **argv,
|
||||
* Name: trace_cmd_dump
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DRIVER_NOTERAM
|
||||
#ifdef CONFIG_DRIVERS_NOTERAM
|
||||
static int trace_cmd_dump(int index, int argc, FAR char **argv,
|
||||
int notectlfd)
|
||||
{
|
||||
@ -335,7 +335,7 @@ static int trace_cmd_mode(int index, int argc, FAR char **argv,
|
||||
|
||||
switch (argv[index][1])
|
||||
{
|
||||
#ifdef CONFIG_DRIVER_NOTERAM
|
||||
#ifdef CONFIG_DRIVERS_NOTERAM
|
||||
case 'o': /* Overwrite mode */
|
||||
owmode = enable;
|
||||
break;
|
||||
@ -431,7 +431,7 @@ static int trace_cmd_mode(int index, int argc, FAR char **argv,
|
||||
(mode.flag & NOTE_FILTER_MODE_FLAG_ENABLE) ?
|
||||
"enabled" : "disabled");
|
||||
|
||||
#ifdef CONFIG_DRIVER_NOTERAM
|
||||
#ifdef CONFIG_DRIVERS_NOTERAM
|
||||
printf(" Overwrite : %s\n",
|
||||
owmode ? "on (+o)" : "off (-o)");
|
||||
#endif
|
||||
@ -799,7 +799,7 @@ static void show_usage(void)
|
||||
" cmd [-c] <command> [<args>...] :"
|
||||
" Get the trace while running <command>\n"
|
||||
#endif
|
||||
#ifdef CONFIG_DRIVER_NOTERAM
|
||||
#ifdef CONFIG_DRIVERS_NOTERAM
|
||||
" dump [-a][-c][<filename>] :"
|
||||
" Output the trace result\n"
|
||||
" [-a] <Android SysTrace>\n"
|
||||
@ -869,7 +869,7 @@ int main(int argc, FAR char *argv[])
|
||||
i++;
|
||||
notectl_enable(false, notectlfd);
|
||||
}
|
||||
#ifdef CONFIG_DRIVER_NOTERAM
|
||||
#ifdef CONFIG_DRIVERS_NOTERAM
|
||||
else if (strcmp(argv[i], "dump") == 0)
|
||||
{
|
||||
i = trace_cmd_dump(i + 1, argc, argv, notectlfd);
|
||||
|
@ -55,7 +55,7 @@ typedef enum
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_DRIVER_NOTERAM
|
||||
#ifdef CONFIG_DRIVERS_NOTERAM
|
||||
|
||||
/****************************************************************************
|
||||
* Name: trace_dump
|
||||
@ -97,14 +97,14 @@ bool trace_dump_get_overwrite(void);
|
||||
|
||||
void trace_dump_set_overwrite(bool mode);
|
||||
|
||||
#else /* CONFIG_DRIVER_NOTERAM */
|
||||
#else /* CONFIG_DRIVERS_NOTERAM */
|
||||
|
||||
#define trace_dump(type,out)
|
||||
#define trace_dump_clear()
|
||||
#define trace_dump_get_overwrite() 0
|
||||
#define trace_dump_set_overwrite(mode) (void)(mode)
|
||||
|
||||
#endif /* CONFIG_DRIVER_NOTERAM */
|
||||
#endif /* CONFIG_DRIVERS_NOTERAM */
|
||||
|
||||
#undef EXTERN
|
||||
#ifdef __cplusplus
|
||||
|
Loading…
x
Reference in New Issue
Block a user