wqueue/notifier: update the work notifier usage

usage changed after commit 90c52e6f8f

Change-Id: Ifb0d739b046a6794b5b3ac177f489fb9a1c5c799
Signed-off-by: chao.an <anchao@xiaomi.com>
This commit is contained in:
chao.an
2020-01-19 17:44:27 +08:00
committed by Xiang Xiao
parent 3054ade4cf
commit a4aa8ae491
7 changed files with 12 additions and 38 deletions
+2 -2
View File
@@ -215,7 +215,7 @@ void udp_readahead_signal(FAR struct udp_conn_s *conn)
{
/* This is just a simple wrapper around work_notifier_signal(). */
return work_notifier_signal(WORK_UDP_READAHEAD, conn);
work_notifier_signal(WORK_UDP_READAHEAD, conn);
}
/****************************************************************************
@@ -244,7 +244,7 @@ void udp_writebuffer_signal(FAR struct udp_conn_s *conn)
{
/* This is just a simple wrapper around work_notifier_signal(). */
return work_notifier_signal(WORK_UDP_WRITEBUFFER, conn);
work_notifier_signal(WORK_UDP_WRITEBUFFER, conn);
}
#endif