mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 13:18:50 +08:00
IOBs: Fix a typing error mm/iob/iob.h mm/iob/iob_initialize.c
This commit is contained in:
parent
2b3eb7344c
commit
e9c55d8f7d
2 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ extern 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;
|
||||
extern FAR struct iob_qentry_s *g_iob_qcommitted;
|
||||
#endif
|
||||
|
||||
/* Counting semaphores that tracks the number of free IOBs/qentries */
|
||||
|
|
|
@ -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 */
|
||||
|
||||
FAR struct iob_s *g_iob_qcommitted;
|
||||
FAR struct iob_qentry_s *g_iob_qcommitted;
|
||||
#endif
|
||||
|
||||
/* Counting semaphores that tracks the number of free IOBs/qentries */
|
||||
|
|
Loading…
Reference in a new issue