Skip to content

Commit

Permalink
kernel: bindings: Fix several typos in the slides
Browse files Browse the repository at this point in the history
Signed-off-by: Miquel Raynal <[email protected]>
  • Loading branch information
miquelraynal committed Jun 14, 2024
1 parent 284b7d7 commit 4014725
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions slides/kernel-hw-devices/kernel-hw-devices.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ \subsection{Describing non-discoverable hardware}
type: object
patternProperties:
# The sub-node name is flexible eg: child@1000, child@2a, etc
# The sub-node name is flexible, eg: child@1000, child@2a, etc
"^child@[a-f0-9]+$":
type: object
\end{minted}
Expand Down Expand Up @@ -1305,7 +1305,7 @@ \subsection{Describing non-discoverable hardware}
# frequency-hz = <0x40000>; /* 262144 Hz */
# This is not:
# frequency-hz = <0>;
# frequency-hz = <&gpio 10>>;
# frequency-hz = <&gpio 10>;
frequency-hz:
minimum: 10000
maximum: 400000
Expand Down Expand Up @@ -1414,7 +1414,8 @@ \subsection{Describing non-discoverable hardware}
\begin{minted}{yaml}
# All properties/constraints defined in generic-controller.yaml
# will apply (but they can be tuned/overwritten below)
allOf: $ref: generic-controller.yaml
allOf:
- $ref: generic-controller.yaml
properties:
# Tune a property defined in generic-controller.yaml
Expand Down Expand Up @@ -1513,7 +1514,8 @@ \subsection{Describing non-discoverable hardware}
\begin{block}{}
{\fontsize{5}{6}\selectfont
\begin{minted}{yaml}
allOf: generic-file.yaml
allOf:
- $ref: generic-file.yaml
properties:
prop-a: true
Expand Down

0 comments on commit 4014725

Please sign in to comment.