diff options
Diffstat (limited to 'arch/mips/include/asm/octeon/cvmx-fpa.h')
| -rw-r--r-- | arch/mips/include/asm/octeon/cvmx-fpa.h | 32 | 
1 files changed, 16 insertions, 16 deletions
diff --git a/arch/mips/include/asm/octeon/cvmx-fpa.h b/arch/mips/include/asm/octeon/cvmx-fpa.h index 541a1ae02b6..aa26a2ce5a0 100644 --- a/arch/mips/include/asm/octeon/cvmx-fpa.h +++ b/arch/mips/include/asm/octeon/cvmx-fpa.h @@ -39,9 +39,9 @@  #include <asm/octeon/cvmx-address.h>  #include <asm/octeon/cvmx-fpa-defs.h> -#define CVMX_FPA_NUM_POOLS      8 +#define CVMX_FPA_NUM_POOLS	8  #define CVMX_FPA_MIN_BLOCK_SIZE 128 -#define CVMX_FPA_ALIGNMENT      128 +#define CVMX_FPA_ALIGNMENT	128  /**   * Structure describing the data format used for stores to the FPA. @@ -186,8 +186,8 @@ static inline void *cvmx_fpa_alloc(uint64_t pool)  /**   * Asynchronously get a new block from the FPA   * - * @scr_addr: Local scratch address to put response in.  This is a byte address, - *                  but must be 8 byte aligned. + * @scr_addr: Local scratch address to put response in.	 This is a byte address, + *		    but must be 8 byte aligned.   * @pool:      Pool to get the block from   */  static inline void cvmx_fpa_async_alloc(uint64_t scr_addr, uint64_t pool) @@ -212,7 +212,7 @@ static inline void cvmx_fpa_async_alloc(uint64_t scr_addr, uint64_t pool)   * @ptr:    Block to free   * @pool:   Pool to put it in   * @num_cache_lines: - *               Cache lines to invalidate + *		 Cache lines to invalidate   */  static inline void cvmx_fpa_free_nosync(void *ptr, uint64_t pool,  					uint64_t num_cache_lines) @@ -234,7 +234,7 @@ static inline void cvmx_fpa_free_nosync(void *ptr, uint64_t pool,   * @ptr:    Block to free   * @pool:   Pool to put it in   * @num_cache_lines: - *               Cache lines to invalidate + *		 Cache lines to invalidate   */  static inline void cvmx_fpa_free(void *ptr, uint64_t pool,  				 uint64_t num_cache_lines) @@ -245,7 +245,7 @@ static inline void cvmx_fpa_free(void *ptr, uint64_t pool,  	    CVMX_ADDR_DIDSPACE(CVMX_FULL_DID(CVMX_OCT_DID_FPA, pool));  	/*  	 * Make sure that any previous writes to memory go out before -	 * we free this buffer.  This also serves as a barrier to +	 * we free this buffer.	 This also serves as a barrier to  	 * prevent GCC from reordering operations to after the  	 * free.  	 */ @@ -259,17 +259,17 @@ static inline void cvmx_fpa_free(void *ptr, uint64_t pool,   * This can only be called once per pool. Make sure proper   * locking enforces this.   * - * @pool:       Pool to initialize - *                   0 <= pool < 8 - * @name:       Constant character string to name this pool. - *                   String is not copied. - * @buffer:     Pointer to the block of memory to use. This must be - *                   accessible by all processors and external hardware. + * @pool:	Pool to initialize + *		     0 <= pool < 8 + * @name:	Constant character string to name this pool. + *		     String is not copied. + * @buffer:	Pointer to the block of memory to use. This must be + *		     accessible by all processors and external hardware.   * @block_size: Size for each block controlled by the FPA   * @num_blocks: Number of blocks   *   * Returns 0 on Success, - *         -1 on failure + *	   -1 on failure   */  extern int cvmx_fpa_setup_pool(uint64_t pool, const char *name, void *buffer,  			       uint64_t block_size, uint64_t num_blocks); @@ -282,8 +282,8 @@ extern int cvmx_fpa_setup_pool(uint64_t pool, const char *name, void *buffer,   *   * @pool:   Pool to shutdown   * Returns Zero on success - *         - Positive is count of missing buffers - *         - Negative is too many buffers or corrupted pointers + *	   - Positive is count of missing buffers + *	   - Negative is too many buffers or corrupted pointers   */  extern uint64_t cvmx_fpa_shutdown_pool(uint64_t pool);  |