rename fifo_count

This commit is contained in:
hathach
2018-03-08 14:02:53 +07:00
parent 817f23e5e0
commit c8e9fb52d4
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ static inline bool fifo_full(fifo_t* f)
return (f->count == f->depth);
}
static inline uint16_t fifo_get_length(fifo_t* f)
static inline uint16_t fifo_count(fifo_t* f)
{
return f->count;
}