aboutsummaryrefslogtreecommitdiff
path: root/Documentation/manual.txt
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2019-05-20 10:12:09 +0200
committerDavid Gibson <david@gibson.dropbear.id.au>2019-05-21 10:01:01 +1000
commit825146d13dc0430e72c1c65b61cb1aa35e559fca (patch)
treef0f796e83e80895fef64144e8ad327e50e3fdd40 /Documentation/manual.txt
parent25bb080c18d1a8a96760e26257bf8c80ec7fcab4 (diff)
downloaddtc-825146d13dc0430e72c1c65b61cb1aa35e559fca.zip
dtc-825146d13dc0430e72c1c65b61cb1aa35e559fca.tar.gz
dtc-825146d13dc0430e72c1c65b61cb1aa35e559fca.tar.bz2
Fix typos in various documentation and source files
The typos have been discovered with the "codespell" utility. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <20190520081209.20415-1-thuth@redhat.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'Documentation/manual.txt')
-rw-r--r--Documentation/manual.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/Documentation/manual.txt b/Documentation/manual.txt
index db32dd7..adf5ccb 100644
--- a/Documentation/manual.txt
+++ b/Documentation/manual.txt
@@ -37,7 +37,7 @@ The upstream repository is here:
git://git.kernel.org/pub/scm/utils/dtc/dtc.git
https://git.kernel.org/pub/scm/utils/dtc/dtc.git
-The gitweb interface for the upstream respository is:
+The gitweb interface for the upstream repository is:
https://git.kernel.org/cgit/utils/dtc/dtc.git/
@@ -234,7 +234,7 @@ For example:
"childnode at address". It in turn has a string property
called "childprop".
- childnode@addresss {
+ childnode@address {
childprop = "hello\n";
};
@@ -253,7 +253,7 @@ Labels may be applied to nodes or properties. Labels appear
before a node name, and are referenced using an ampersand: &label.
Absolute node path names are also allowed in node references.
-In this exmaple, a node is labled "mpic" and then referenced:
+In this example, a node is labeled "mpic" and then referenced:
mpic: interrupt-controller@40000 {
...
@@ -264,7 +264,7 @@ In this exmaple, a node is labled "mpic" and then referenced:
...
};
-And used in properties, lables may appear before or after any value:
+And used in properties, labels may appear before or after any value:
randomnode {
prop: string = data: "mystring\n" data_end: ;
@@ -418,7 +418,7 @@ value of r3.
among others, by kexec. If you are on an SMP system, this value
should match the content of the "reg" property of the CPU node in
the device-tree corresponding to the CPU calling the kernel entry
- point (see further chapters for more informations on the required
+ point (see further chapters for more information on the required
device-tree contents)
- size_dt_strings
@@ -584,7 +584,7 @@ looks like in practice.
This tree is almost a minimal tree. It pretty much contains the
minimal set of required nodes and properties to boot a linux kernel;
-that is, some basic model informations at the root, the CPUs, and the
+that is, some basic model information at the root, the CPUs, and the
physical memory layout. It also includes misc information passed
through /chosen, like in this example, the platform type (mandatory)
and the kernel command line arguments (optional).