This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new cc23a91 Rename note_add to sched_note_add in sched_note_irqhandler()
cc23a91 is described below
commit cc23a910981a7d050f0b72ce1bf970915bfb4183
Author: Nakamura, Yuuichi <[email protected]>
AuthorDate: Tue Sep 15 15:01:57 2020 +0900
Rename note_add to sched_note_add in sched_note_irqhandler()
---
sched/sched/sched_note.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sched/sched/sched_note.c b/sched/sched/sched_note.c
index 71425b0..956b50d 100644
--- a/sched/sched/sched_note.c
+++ b/sched/sched/sched_note.c
@@ -607,6 +607,7 @@ void sched_note_irqhandler(int irq, FAR void *handler, bool
enter)
/* Add the note to circular buffer */
- note_add((FAR const uint8_t *)¬e, sizeof(struct note_irqhandler_s));
+ sched_note_add((FAR const uint8_t *)¬e,
+ sizeof(struct note_irqhandler_s));
}
#endif