summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorMarçal Comajoan Cara <mcomajoancara@gmail.com>2018-12-03 21:37:32 +0100
committerJoel Sherrill <joel@rtems.org>2018-12-04 15:12:53 -0600
commit0446f680564b171a349e4efaf9f4834d938ae040 (patch)
tree1de28509192154d05e32cebc71417c8ce8cd0b16 /cpukit
parentpsxhdrs: Added POSIX Compliance Test fot sys/time.h (GCI 2018) (diff)
downloadrtems-0446f680564b171a349e4efaf9f4834d938ae040.tar.bz2
Spelling and grammar fixes in source code comments (GCI 2018)
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/include/rtems/confdefs.h4
-rw-r--r--cpukit/include/rtems/rtems/mainpage.h4
-rw-r--r--cpukit/include/rtems/rtl/rtl.h4
-rw-r--r--cpukit/libfs/src/defaults/default_rename.c2
-rw-r--r--cpukit/libfs/src/dosfs/msdos_format.c2
-rw-r--r--cpukit/libi2c/README_libi2c2
-rw-r--r--cpukit/score/cpu/no_cpu/include/rtems/score/cpu.h2
7 files changed, 10 insertions, 10 deletions
diff --git a/cpukit/include/rtems/confdefs.h b/cpukit/include/rtems/confdefs.h
index e884289e2c..d66e23e0ab 100644
--- a/cpukit/include/rtems/confdefs.h
+++ b/cpukit/include/rtems/confdefs.h
@@ -1129,7 +1129,7 @@ extern rtems_initialization_tasks_table Initialization_tasks[];
*
* @addtogroup Configuration
*
- * This module contains parameters related to thread aand interrupt stacks.
+ * This module contains parameters related to thread and interrupt stacks.
*/
/**
@@ -1523,7 +1523,7 @@ extern rtems_initialization_tasks_table Initialization_tasks[];
* Table.
*
* Default Device Driver Table. Each driver needed by the test is explicitly
- * choosen by the application. There is always a null driver entry.
+ * chosen by the application. There is always a null driver entry.
*/
/**@{*/
diff --git a/cpukit/include/rtems/rtems/mainpage.h b/cpukit/include/rtems/rtems/mainpage.h
index e2d51328cf..8a6ddbb8ad 100644
--- a/cpukit/include/rtems/rtems/mainpage.h
+++ b/cpukit/include/rtems/rtems/mainpage.h
@@ -359,7 +359,7 @@
* Since memory is a critical resource in many real-time embedded systems,
* RTEMS was specifically designed to automatically leave out all services that
* are not required from the run-time environment. Features such as networking,
- * various fileystems, and many other features are completely optional. This
+ * various filesystems, and many other features are completely optional. This
* allows the application designer the flexibility to tailor RTEMS to most
* efficiently meet system requirements while still satisfying even the most
* stringent memory constraints. As a result, the size of the RTEMS executive
@@ -502,7 +502,7 @@
* </table>
*
* The 16-bit format is designed to be as similar as possible to the 32-bit
- * format. The differences are limited to the eliminatation of the node field
+ * format. The differences are limited to the elimination of the node field
* and reduction of the index field from 16-bits to 8-bits. Thus the 16-bit
* format only supports up to 255 object instances per API/Class combination
* and single processor systems. As this format is typically utilized by 16-bit
diff --git a/cpukit/include/rtems/rtl/rtl.h b/cpukit/include/rtems/rtl/rtl.h
index 398ac2cd3f..41cb010ef4 100644
--- a/cpukit/include/rtems/rtl/rtl.h
+++ b/cpukit/include/rtems/rtl/rtl.h
@@ -42,12 +42,12 @@ extern "C" {
* dlclose family of functions.
*
* The runtime link editor is different to that found on Unix type systems. The
- * object modules are compiled for PIC or position indepentent code and
+ * object modules are compiled for PIC or position independent code and
* therefore require relocating when loaded.
*
* The object file format is currently ELF and object files can be separate
* files or in an archive. Object files in an archive are referenced by
- * specifing 'archive:object' format. For example 'libfoo.a:bar.o'.
+ * specifying 'archive:object' format. For example 'libfoo.a:bar.o'.
*/
/**
diff --git a/cpukit/libfs/src/defaults/default_rename.c b/cpukit/libfs/src/defaults/default_rename.c
index e4be4637ec..edaef54e58 100644
--- a/cpukit/libfs/src/defaults/default_rename.c
+++ b/cpukit/libfs/src/defaults/default_rename.c
@@ -1,7 +1,7 @@
/**
* @file
*
- * @brief RTESM Default File System Rename Files
+ * @brief RTEMS Default File System Rename Files
* @ingroup LibIOFSOps File System Operations
*/
diff --git a/cpukit/libfs/src/dosfs/msdos_format.c b/cpukit/libfs/src/dosfs/msdos_format.c
index 2643e16bd0..42f1d74575 100644
--- a/cpukit/libfs/src/dosfs/msdos_format.c
+++ b/cpukit/libfs/src/dosfs/msdos_format.c
@@ -574,7 +574,7 @@ static int msdos_format_determine_fmt_params
fmt_params->sectors_per_cluster = 1;
/*
* limiting values for disk size, fat type, sectors per cluster
- * NOTE: maximum sect_per_clust is arbitrarily choosen with values that
+ * NOTE: maximum sect_per_clust is arbitrarily chosen with values that
* are a compromise concerning capacity and efficency
*/
uint32_t fat12_sect_per_clust = 8;
diff --git a/cpukit/libi2c/README_libi2c b/cpukit/libi2c/README_libi2c
index 18de89da2a..e2b4013ed7 100644
--- a/cpukit/libi2c/README_libi2c
+++ b/cpukit/libi2c/README_libi2c
@@ -224,7 +224,7 @@ rtems_libi2c_drv_t data structure passed the libi2c when the device is
registered (see "Device registration" above). These function directly match
the RTEMS I/O Mangers calls "open", "close", "read", "write",
"control", and they are passed the same arguments. Functions not
-needed may be ommited (and replaced by a NULL pointer in
+needed may be omited (and replaced by a NULL pointer in
rtems_libi2c_drv_t).
======================================================================
diff --git a/cpukit/score/cpu/no_cpu/include/rtems/score/cpu.h b/cpukit/score/cpu/no_cpu/include/rtems/score/cpu.h
index a9294d02a2..7ab09d990e 100644
--- a/cpukit/score/cpu/no_cpu/include/rtems/score/cpu.h
+++ b/cpukit/score/cpu/no_cpu/include/rtems/score/cpu.h
@@ -437,7 +437,7 @@ extern Context_Control_fp _CPU_Null_fp_context;
* by hardware or the interrupt processing code. These variables contain
* pointers to the lowest and highest addresses in the chunk of memory
* allocated for the interrupt stack. Since it is unknown whether the stack
- * grows up or down (in general), this give the CPU dependent code the option
+ * grows up or down (in general), this gives the CPU dependent code the option
* of picking the version it wants to use.
*
* Port Specific Information: