Skip to content

Commit 9876863

Browse files
committed
Fix build warnings on Latex
Fix the following issues: - flattened-format.rst: improperly formed bullet list - introduction.rst: section heading too short - rename prolog.rst to rst_prolog so Sphinx doesn't try to process it directly Signed-off-by: Grant Likely <[email protected]>
1 parent 1dcda6d commit 9876863

File tree

4 files changed

+19
-14
lines changed

4 files changed

+19
-14
lines changed

source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
exclude_patterns = []
8282

8383
# Include at the beginning of every source file that is read
84-
with open('prolog.rst', 'rb') as pr:
84+
with open('rst_prolog', 'rb') as pr:
8585
rst_prolog = pr.read().decode('utf-8')
8686

8787
# The reST default role (used for this markup: `text`) to use for all

source/flattened-format.rst

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -329,18 +329,23 @@ a whole.
329329
More precisely, each node’s representation consists of the following
330330
components:
331331

332-
* (optionally) any number of FDT_NOP tokens
333-
* FDT_BEGIN_NODE token
334-
* The node’s name as a null-terminated string
335-
* [zeroed padding bytes to align to a 4-byte boundary]
336-
* For each property of the node:
337-
* (optionally) any number of FDT_NOP tokens
338-
* FDT_PROP token
339-
* property information as given in section :ref:`sect-fdt-lexical-structure`
340-
* [zeroed padding bytes to align to a 4-byte boundary]
341-
* Representations of all child nodes in this format
342-
* (optionally) any number of FDT_NOP tokens
343-
* FDT_END_NODE token
332+
* (optionally) any number of FDT_NOP tokens
333+
* FDT_BEGIN_NODE token
334+
335+
* The node’s name as a null-terminated string
336+
* [zeroed padding bytes to align to a 4-byte boundary]
337+
338+
* For each property of the node:
339+
340+
* (optionally) any number of FDT_NOP tokens
341+
* FDT_PROP token
342+
343+
* property information as given in section :ref:`sect-fdt-lexical-structure`
344+
* [zeroed padding bytes to align to a 4-byte boundary]
345+
346+
* Representations of all child nodes in this format
347+
* (optionally) any number of FDT_NOP tokens
348+
* FDT_END_NODE token
344349

345350
Note that this process requires that all property definitions for a
346351
particular node precede any subnode definitions for that node. Although

source/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Syntax* form. See section :ref:`chapter-devicetree-source-format` for
7979
an overview of this syntax.
8080

8181
Relationship to IEEE™ 1275 and |epapr|
82-
------------------------------------
82+
--------------------------------------
8383

8484
|spec| is loosely related to the IEEE 1275 Open Firmware
8585
standard—\ *IEEE Standard for Boot (Initialization Configuration)
File renamed without changes.

0 commit comments

Comments
 (0)