The code block does not use valid DTS syntax, but rather a pseudo
DTS syntax. Sphinx complains about this, so fix the syntax.

"
doc/board/ti/k3.rst:467: WARNING: Lexing literal_block '/dts-v1/;...};'
as "dts" resulted in an error at token: 'i'. Retrying in relaxed mode.
[misc.highlighting_failure]
"

Signed-off-by: Marek Vasut <[email protected]>
---
Cc: Neha Malcom Francis <[email protected]>
Cc: Shiva Tripathi <[email protected]>
Cc: Tom Rini <[email protected]>
Cc: [email protected]
---
 doc/board/ti/k3.rst | 26 ++++++++++++++++----------
 1 file changed, 16 insertions(+), 10 deletions(-)

diff --git a/doc/board/ti/k3.rst b/doc/board/ti/k3.rst
index d3ecaf59909..7eeb1a040d3 100644
--- a/doc/board/ti/k3.rst
+++ b/doc/board/ti/k3.rst
@@ -473,18 +473,24 @@ choose any configuration at runtime to boot from.
         #address-cells = <1>;
 
         images {
-            [image-1]
-            [image-2]
-            [fdt-1]
-            [fdt-2]
-        }
+            kernel-1 { };
+            kernel-2 { };
+            fdt-1 { };
+            fdt-2 { };
+        };
 
         configurations {
-            default = <conf-1>
-            [conf-1: image-1,fdt-1]
-            [conf-2: image-2,fdt-1]
-        }
-    }
+            default = "conf-1";
+            conf-1 {
+                kernel = "kernel-1";
+                fdt = "fdt-1";
+            };
+            conf-2 {
+                kernel = "kernel-2";
+                fdt = "fdt-2";
+            };
+        };
+    };
 
 * Sample Images
 
-- 
2.53.0

Reply via email to