} cvmx_cmd_queue_id_t;
/**
- * Command write operations can fail if the comamnd queue needs
+ * Command write operations can fail if the command queue needs
* a new buffer and the associated FPA pool is empty. It can also
* fail if the number of queued command words reaches the maximum
* set at initialization.
uint64_t unused2:6;
/* FPA buffer size in 64bit words minus 1 */
uint64_t pool_size_m1:13;
- /* Number of comamnds already used in buffer */
+ /* Number of commands already used in buffer */
uint64_t index:13;
} __cvmx_cmd_queue_state_t;
/**
- * This structure contains the global state of all comamnd queues.
+ * This structure contains the global state of all command queues.
* It is stored in a bootmem named block and shared by all
* applications running on Octeon. Tickets are stored in a differnet
* cahce line that queue information to reduce the contention on the
/**
* Write an arbitrary number of command words to a command queue.
- * This is a generic function; the fixed number of comamnd word
+ * This is a generic function; the fixed number of command word
* functions yield higher performance.
*
* @queue_id: Hardware command queue to write to
* updates. If you don't use this locking you must ensure
* exclusivity some other way. Locking is strongly recommended.
* @cmd_count: Number of command words to write
- * @cmds: Array of comamnds to write
+ * @cmds: Array of commands to write
*
* Returns CVMX_CMD_QUEUE_SUCCESS or a failure code
*/
uint64_t *ptr;
int count;
/*
- * We need a new comamnd buffer. Fail if there isn't
+ * We need a new command buffer. Fail if there isn't
* one available.
*/
uint64_t *new_buffer =
*/
int count = qptr->pool_size_m1 - qptr->index;
/*
- * We need a new comamnd buffer. Fail if there isn't
+ * We need a new command buffer. Fail if there isn't
* one available.
*/
uint64_t *new_buffer =
*/
int count = qptr->pool_size_m1 - qptr->index;
/*
- * We need a new comamnd buffer. Fail if there isn't
+ * We need a new command buffer. Fail if there isn't
* one available
*/
uint64_t *new_buffer =