mirror of
https://github.com/apache/nuttx.git
synced 2026-09-06 17:06:31 +00:00
IOBs: Fix build break
Signed-off-by: Masayuki Ishikawa <masayuki.ishikawa@gmail.com>
This commit is contained in:
parent
989195cec8
commit
f10e10e465
2 changed files with 2 additions and 2 deletions
|
|
@ -82,7 +82,7 @@ static FAR struct iob_qentry_s *iob_alloc_qcommitted(void)
|
|||
{
|
||||
/* Remove the I/O buffer from the committed list */
|
||||
|
||||
g_iob_qcommitted = iobq->io_flink;
|
||||
g_iob_qcommitted = iobq->qe_flink;
|
||||
|
||||
/* Put the I/O buffer in a known state */
|
||||
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ FAR struct iob_qentry_s *g_iob_freeqlist;
|
|||
|
||||
/* A list of I/O buffer queue containers that are committed for allocation */
|
||||
|
||||
extern FAR struct iob_s *g_iob_qcommitted;
|
||||
FAR struct iob_s *g_iob_qcommitted;
|
||||
#endif
|
||||
|
||||
/* Counting semaphores that tracks the number of free IOBs/qentries */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue