From e81c9aed162c49b6652c18b85b2fed131a1968c2 Mon Sep 17 00:00:00 2001 From: "M. Ian Graham" Date: Sat, 11 Dec 2021 05:08:24 +0900 Subject: [PATCH] raspberry-pi/4/i2c1: indentation fix --- raspberry-pi/4/i2c1.nix | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/raspberry-pi/4/i2c1.nix b/raspberry-pi/4/i2c1.nix index a93acb3..27db73e 100644 --- a/raspberry-pi/4/i2c1.nix +++ b/raspberry-pi/4/i2c1.nix @@ -22,20 +22,20 @@ in { name = "i2c1-on-overlay"; dtsText = '' - /dts-v1/; - /plugin/; - / { - compatible = "brcm,bcm2711"; - fragment@0 { - target = <&i2c1>; - __overlay__ { - #address-cells = <1>; - #size-cells = <0>; - status = "okay"; + /dts-v1/; + /plugin/; + / { + compatible = "brcm,bcm2711"; + fragment@0 { + target = <&i2c1>; + __overlay__ { + #address-cells = <1>; + #size-cells = <0>; + status = "okay"; + }; }; }; - }; - ''; + ''; } ]; };