Skip to content

Commit f3c7378

Browse files
jhovoldrobherring
authored andcommitted
Add space before unit symbols
Add a space between numerical value and unit symbol where missing. While at it, fix the indefinite article in "a 1024 KB range". Signed-off-by: Johan Hovold <[email protected]> Signed-off-by: Rob Herring <[email protected]>
1 parent 9c483bc commit f3c7378

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

source/devicenodes.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ If the VLE storage attribute is supported, with VLE=0.
160160

161161
Given a 64-bit Power system with the following physical memory layout:
162162

163-
* RAM: starting address 0x0, length 0x80000000 (2GB)
164-
* RAM: starting address 0x100000000, length 0x100000000 (4GB)
163+
* RAM: starting address 0x0, length 0x80000000 (2 GB)
164+
* RAM: starting address 0x100000000, length 0x100000000 (4 GB)
165165

166166
Memory nodes could be defined as follows, assuming ``#address-cells = <2>``
167167
and ``#size-cells = <2>``.
@@ -690,7 +690,7 @@ each with their own on-chip L2 and a shared L3.
690690
device_type = "cpu";
691691
reg = <0>;
692692
cache-unified;
693-
cache-size = <0x8000>; // L1, 32KB
693+
cache-size = <0x8000>; // L1, 32 KB
694694
cache-block-size = <32>;
695695
timebase-frequency = <82500000>; // 82.5 MHz
696696
next-level-cache = <&L2_0>; // phandle to L2
@@ -721,7 +721,7 @@ each with their own on-chip L2 and a shared L3.
721721
reg = <1>;
722722
cache-unified;
723723
cache-block-size = <32>;
724-
cache-size = <0x8000>; // L1, 32KB
724+
cache-size = <0x8000>; // L1, 32 KB
725725
timebase-frequency = <82500000>; // 82.5 MHz
726726
clock-frequency = <825000000>; // 825 MHz
727727
cache-level = <2>;

source/devicetree-basics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ Address Translation Example:
751751

752752
``<0x0 0xe0000000 0x00100000>;``
753753

754-
This property value specifies that for an 1024KB range of address space,
754+
This property value specifies that for a 1024 KB range of address space,
755755
a child node addressed at physical 0x0 maps to a parent address of
756756
physical 0xe0000000. With this mapping, the ``serial`` device node can
757757
be addressed by a load or store at address 0xe0004600, an offset of

0 commit comments

Comments
 (0)