ocs_fs: Fix two typos in source code comments

- s/maxium/maximum/
- s/maxiumum/maximum/

MFC after:	3 days
This commit is contained in:
Gordon Bergling 2021-11-03 17:17:51 +01:00
parent 40a57b00f9
commit 7b56cb0462

View File

@ -100,7 +100,7 @@
#define OCS_RSVD_INI_IO 8
#define OCS_MIN_DMA_ALIGNMENT 16
#define OCS_MAX_DMA_ALLOC (64*1024) /* maxium DMA allocation that is expected to reliably succeed */
#define OCS_MAX_DMA_ALLOC (64*1024) /* maximum DMA allocation that is expected to reliably succeed */
/*
* Macros used to size the CQ hash table. We want to round up to the next
@ -465,7 +465,7 @@ typedef struct ocs_dma_s {
* Return maximum supported DMA allocation size, given alignment
* requirement.
*
* @return maxiumum supported DMA allocation size
* @return maximum supported DMA allocation size
*/
static inline uint32_t ocs_max_dma_alloc(ocs_os_handle_t os, size_t align)
{