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 <johan@xxxxxxxxxx> --- source/devicenodes.rst | 8 ++++---- source/devicetree-basics.rst | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/source/devicenodes.rst b/source/devicenodes.rst index b161f076751a..8825ad9add2d 100644 --- a/source/devicenodes.rst +++ b/source/devicenodes.rst @@ -160,8 +160,8 @@ If the VLE storage attribute is supported, with VLE=0. Given a 64-bit Power system with the following physical memory layout: -* RAM: starting address 0x0, length 0x80000000 (2GB) -* RAM: starting address 0x100000000, length 0x100000000 (4GB) +* RAM: starting address 0x0, length 0x80000000 (2 GB) +* RAM: starting address 0x100000000, length 0x100000000 (4 GB) Memory nodes could be defined as follows, assuming ``#address-cells = <2>`` and ``#size-cells = <2>``. @@ -690,7 +690,7 @@ each with their own on-chip L2 and a shared L3. device_type = "cpu"; reg = <0>; cache-unified; - cache-size = <0x8000>; // L1, 32KB + cache-size = <0x8000>; // L1, 32 KB cache-block-size = <32>; timebase-frequency = <82500000>; // 82.5 MHz next-level-cache = <&L2_0>; // phandle to L2 @@ -721,7 +721,7 @@ each with their own on-chip L2 and a shared L3. reg = <1>; cache-unified; cache-block-size = <32>; - cache-size = <0x8000>; // L1, 32KB + cache-size = <0x8000>; // L1, 32 KB timebase-frequency = <82500000>; // 82.5 MHz clock-frequency = <825000000>; // 825 MHz cache-level = <2>; diff --git a/source/devicetree-basics.rst b/source/devicetree-basics.rst index ba4f0cb834f6..1e1fe7769018 100644 --- a/source/devicetree-basics.rst +++ b/source/devicetree-basics.rst @@ -751,7 +751,7 @@ Address Translation Example: ``<0x0 0xe0000000 0x00100000>;`` - This property value specifies that for an 1024KB range of address space, + This property value specifies that for a 1024 KB range of address space, a child node addressed at physical 0x0 maps to a parent address of physical 0xe0000000. With this mapping, the ``serial`` device node can be addressed by a load or store at address 0xe0004600, an offset of -- 2.20.1