doc: replace lifo/fifo with LIFO/FIFO

Replace all occurances of lifo/fifo with LIFO/FIFO to be consistent.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2020-07-08 14:14:25 -04:00
commit 568211738d
6 changed files with 53 additions and 53 deletions

View file

@ -2848,7 +2848,7 @@ struct k_lifo {
/**
* @brief Get an element from a LIFO queue.
*
* This routine removes a data item from @a lifo in a "last in, first out"
* This routine removes a data item from @a LIFO in a "last in, first out"
* manner. The first word of the data item is reserved for the kernel's use.
*
* @note Can be called by ISRs, but @a timeout must be set to K_NO_WAIT.
@ -4861,7 +4861,7 @@ enum _poll_types_bits {
/* semaphore availability */
_POLL_TYPE_SEM_AVAILABLE,
/* queue/fifo/lifo data availability */
/* queue/FIFO/LIFO data availability */
_POLL_TYPE_DATA_AVAILABLE,
_POLL_NUM_TYPES
@ -4880,10 +4880,10 @@ enum _poll_states_bits {
/* semaphore is available */
_POLL_STATE_SEM_AVAILABLE,
/* data is available to read on queue/fifo/lifo */
/* data is available to read on queue/FIFO/LIFO */
_POLL_STATE_DATA_AVAILABLE,
/* queue/fifo/lifo wait was cancelled */
/* queue/FIFO/LIFO wait was cancelled */
_POLL_STATE_CANCELLED,
_POLL_NUM_STATES