mirror of
https://github.com/apache/nuttx.git
synced 2026-03-23 14:05:12 +08:00
style: fix spelling in code comments and strings
This commit is contained in:
@@ -132,7 +132,7 @@ FAR void *vm_map_region(uintptr_t paddr, size_t size)
|
||||
error:
|
||||
if (i)
|
||||
{
|
||||
/* Undo alway mapped pages */
|
||||
/* Undo always mapped pages */
|
||||
|
||||
up_shmdt((uintptr_t)vaddr, i);
|
||||
}
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
* Pre-processor Definitions
|
||||
****************************************************************************/
|
||||
|
||||
/* Granule arithmetics */
|
||||
/* Granule arithmetic */
|
||||
|
||||
#define GRANSIZE(g) (1 << g->log2gran)
|
||||
#define GRANMASK(g) (GRANSIZE(g) - 1)
|
||||
|
||||
@@ -217,7 +217,7 @@ struct mm_delaynode_s
|
||||
|
||||
struct mm_heap_s
|
||||
{
|
||||
/* Mutex for controling access to this heap */
|
||||
/* Mutex for controlling access to this heap */
|
||||
|
||||
mutex_t mm_lock;
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
|
||||
#define SRFLAG_AVAILABLE 0 /* Available if no flag bits set */
|
||||
#define SRFLAG_INUSE (1 << 0) /* Bit 0: Region is in use */
|
||||
#define SRFLAG_UNLINKED (1 << 1) /* Bit 1: Region perists while references */
|
||||
#define SRFLAG_UNLINKED (1 << 1) /* Bit 1: Region persists while references */
|
||||
|
||||
#ifndef CONFIG_ARCH_ADDRENV
|
||||
# error CONFIG_ARCH_ADDRENV must be selected with CONFIG_MM_SHM
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
From be043f1f50a0b30c3817c262d516083e409283d7 Mon Sep 17 00:00:00 2001
|
||||
From: Juan Carrano <j.carrano@fu-berlin.de>
|
||||
Date: Mon, 23 Apr 2018 13:55:42 +0200
|
||||
Subject: [PATCH 5/8] Fix warnining on implicit pointer conversion.
|
||||
Subject: [PATCH 5/8] Fix warning on implicit pointer conversion.
|
||||
|
||||
Change-Id: I2a208a0a4c835e752fe827acd3d5adb1aa2be626
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user