From 51fa5c3fcec0308ce4bb664b91a0568a8d1468ad Mon Sep 17 00:00:00 2001 From: Raymond Hackley Date: Fri, 18 Aug 2023 09:42:55 +0000 Subject: [PATCH] dtsi: Rename &msmgpio -> &tlmm Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=41e22c2ff38eaea777f1158071539e659aa7980d --- dtsi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dtsi.py b/dtsi.py index 92bfaf6..e82dceb 100644 --- a/dtsi.py +++ b/dtsi.py @@ -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