Skip to content

Commit

Permalink
edtlib: clean up Range docstring
Browse files Browse the repository at this point in the history
Fix grammar issues and typos.

Signed-off-by: Martí Bolívar <[email protected]>
  • Loading branch information
mbolivar-nordic committed Apr 17, 2023
1 parent 49c0d72 commit b07f3dd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions scripts/dts/python-devicetree/src/devicetree/edtlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,26 +740,26 @@ class Range:
The Node instance this range is from
child_bus_cells:
Is the number of cells (4-bytes wide words) describing the child bus address.
The number of cells used to describe a child bus address.
child_bus_addr:
Is a physical address within the child bus address space, or None if the
child address-cells is equal 0.
A physical address within the child bus address space, or None if the
child's #address-cells equals 0.
parent_bus_cells:
Is the number of cells (4-bytes wide words) describing the parent bus address.
The number of cells used to describe a parent bus address.
parent_bus_addr:
Is a physical address within the parent bus address space, or None if the
parent address-cells is equal 0.
A physical address within the parent bus address space, or None if the
parent's #address-cells equals 0.
length_cells:
Is the number of cells (4-bytes wide words) describing the size of range in
the child address space.
The number of cells used to describe the size of range in
the child's address space.
length:
Specifies the size of the range in the child address space, or None if the
child size-cells is equal 0.
The size of the range in the child address space, or None if the
child's #size-cells equals 0.
"""
def __repr__(self):
fields = []
Expand Down

0 comments on commit b07f3dd

Please sign in to comment.