Skip to content

Commit

Permalink
dtsi: Rename &msmgpio -> &tlmm
Browse files Browse the repository at this point in the history
  • Loading branch information
wonderfulShrineMaidenOfParadise committed Aug 18, 2023
1 parent 89c5d08 commit 51fa5c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dtsi.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def generate_gpios(options: Options):
s = ""
for name, flags in options.gpios.items():
flags = "GPIO_ACTIVE_LOW" if flags & GpioFlag.ACTIVE_LOW else "GPIO_ACTIVE_HIGH"
s += f"\t\t{name}-gpios = <&msmgpio XY {flags}>;\n"
s += f"\t\t{name}-gpios = <&tlmm XY {flags}>;\n"
return s


Expand Down

0 comments on commit 51fa5c3

Please sign in to comment.