Re: [PATCH v2 5/8] arm64: dts: google: Move 'status' to the end to match coding style

Peter Griffin <[email protected]>
Newsgroups gmane.linux.drivers.devicetree,gmane.linux.ports.arm.kernel,gmane.linux.kernel.samsung-soc,gmane.linux.kernel
Message-ID <CADrjBPp_m=XSn1rMTbXbRtdCQec8dh8kFnESBHtszs1wvd3TKg@mail.gmail.com>
On Sat, 1 Aug 2026 at 16:07, Krzysztof Kozlowski
<[email protected]> wrote:
>
> 'status' property is special, thus DTS coding style expects it to be
> always the last property preceded with a blank line, as reported by
> dt-check-style:
>
>   [required-blank-lines] "status" must be preceded by a blank line
>   [property-order] property 'vcc-supply' out of canonical order (should sort before 'status')
>
> Reviewed-by: André Draszik <[email protected]>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---

Reviewed-by: Peter Griffin <[email protected]>

>  arch/arm64/boot/dts/exynos/google/gs101-oriole.dts |  2 +
>  .../boot/dts/exynos/google/gs101-pixel-common.dtsi | 12 +++-
>  arch/arm64/boot/dts/exynos/google/gs101-raven.dts  |  2 +
>  arch/arm64/boot/dts/exynos/google/gs101.dtsi       | 70 ++++++++++++++++++++++
>  4 files changed, 85 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm64/boot/dts/exynos/google/gs101-oriole.dts b/arch/arm64/boot/dts/exynos/google/gs101-oriole.dts
> index 36721adcaa23..c5a3958c2320 100644
> --- a/arch/arm64/boot/dts/exynos/google/gs101-oriole.dts
> +++ b/arch/arm64/boot/dts/exynos/google/gs101-oriole.dts
> @@ -39,6 +39,7 @@ ldo31m {
>
>  &cont_splash_mem {
>         reg = <0x0 0xfac00000 (1080 * 2400 * 4)>;
> +
>         status = "okay";
>  };
>
> @@ -47,5 +48,6 @@ &framebuffer0 {
>         height = <2400>;
>         stride = <(1080 * 4)>;
>         format = "a8r8g8b8";
> +
>         status = "okay";
>  };
> diff --git a/arch/arm64/boot/dts/exynos/google/gs101-pixel-common.dtsi b/arch/arm64/boot/dts/exynos/google/gs101-pixel-common.dtsi
> index 5227cd4e314b..a12f2b88d72d 100644
> --- a/arch/arm64/boot/dts/exynos/google/gs101-pixel-common.dtsi
> +++ b/arch/arm64/boot/dts/exynos/google/gs101-pixel-common.dtsi
> @@ -32,6 +32,7 @@ framebuffer0: framebuffer-0 {
>                         vci-supply = <&s2mpg10_ldo22m>;
>                         vddi-supply = <&s2mpg11_bucka>;
>                         /* format properties to be added by actual board */
> +
>                         status = "disabled";
>                 };
>         };
> @@ -98,6 +99,7 @@ cont_splash_mem: splash@fac00000 {
>                         /* size to be updated by actual board */
>                         reg = <0x0 0xfac00000 0x0>;
>                         no-map;
> +
>                         status = "disabled";
>                 };
>         };
> @@ -856,8 +858,9 @@ &serial_0 {
>  };
>
>  &ufs_0 {
> -       status = "okay";
>         vcc-supply = <&ufs_0_fixed_vcc_reg>;
> +
> +       status = "okay";
>  };
>
>  &ufs_0_phy {
> @@ -867,6 +870,7 @@ &ufs_0_phy {
>  &usbdrd31 {
>         vdd10-supply = <&reg_placeholder>;
>         vdd33-supply = <&reg_placeholder>;
> +
>         status = "okay";
>  };
>
> @@ -875,6 +879,7 @@ &usbdrd31_dwc3 {
>         usb-role-switch;
>         role-switch-default-mode = "peripheral";
>         maximum-speed = "super-speed-plus";
> +
>         status = "okay";
>
>         port {
> @@ -893,6 +898,7 @@ &usbdrd31_phy {
>         vdd33-usb20-supply = <&reg_placeholder>;
>         vdda-usbdp-supply = <&reg_placeholder>;
>         vddh-usbdp-supply = <&reg_placeholder>;
> +
>         status = "okay";
>
>         port {
> @@ -904,20 +910,24 @@ usbdrd31_phy_orien_switch: endpoint {
>
>  &usi_uart {
>         samsung,clkreq-on; /* needed for UART mode */
> +
>         status = "okay";
>  };
>
>  &usi8 {
>         samsung,mode = <USI_MODE_I2C>;
> +
>         status = "okay";
>  };
>
>  &usi12 {
>         samsung,mode = <USI_MODE_I2C>;
> +
>         status = "okay";
>  };
>
>  &watchdog_cl0 {
>         timeout-sec = <30>;
> +
>         status = "okay";
>  };
> diff --git a/arch/arm64/boot/dts/exynos/google/gs101-raven.dts b/arch/arm64/boot/dts/exynos/google/gs101-raven.dts
> index a422542715f2..7c4273796a22 100644
> --- a/arch/arm64/boot/dts/exynos/google/gs101-raven.dts
> +++ b/arch/arm64/boot/dts/exynos/google/gs101-raven.dts
> @@ -35,6 +35,7 @@ ldo14s {
>
>  &cont_splash_mem {
>         reg = <0x0 0xfac00000 (1440 * 3120 * 4)>;
> +
>         status = "okay";
>  };
>
> @@ -43,5 +44,6 @@ &framebuffer0 {
>         height = <3120>;
>         stride = <(1440 * 4)>;
>         format = "a8r8g8b8";
> +
>         status = "okay";
>  };
> diff --git a/arch/arm64/boot/dts/exynos/google/gs101.dtsi b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
> index 86933f22647b..edc38f2d1183 100644
> --- a/arch/arm64/boot/dts/exynos/google/gs101.dtsi
> +++ b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
> @@ -624,6 +624,7 @@ watchdog_cl0: watchdog@10060000 {
>                         interrupts = <GIC_SPI 765 IRQ_TYPE_LEVEL_HIGH 0>;
>                         samsung,syscon-phandle = <&pmu_system_controller>;
>                         samsung,cluster-index = <0>;
> +
>                         status = "disabled";
>                 };
>
> @@ -636,6 +637,7 @@ watchdog_cl1: watchdog@10070000 {
>                         interrupts = <GIC_SPI 766 IRQ_TYPE_LEVEL_HIGH 0>;
>                         samsung,syscon-phandle = <&pmu_system_controller>;
>                         samsung,cluster-index = <1>;
> +
>                         status = "disabled";
>                 };
>
> @@ -707,6 +709,7 @@ usi1: usi@109000c0 {
>                                  <&cmu_peric0 CLK_GOUT_PERIC0_PERIC0_TOP0_IPCLK_0>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x1000>;
> +
>                         status = "disabled";
>
>                         hsi2c_1: i2c@10900000 {
> @@ -721,6 +724,7 @@ hsi2c_1: i2c@10900000 {
>                                 interrupts = <GIC_SPI 635 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c1_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -734,6 +738,7 @@ serial_1: serial@10900000 {
>                                 pinctrl-0 = <&uart1_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -748,6 +753,7 @@ spi_1: spi@10900000 {
>                                 interrupts = <GIC_SPI 635 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi1_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -762,6 +768,7 @@ usi2: usi@109100c0 {
>                                  <&cmu_peric0 CLK_GOUT_PERIC0_PERIC0_TOP0_IPCLK_1>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x1004>;
> +
>                         status = "disabled";
>
>                         hsi2c_2: i2c@10910000 {
> @@ -776,6 +783,7 @@ hsi2c_2: i2c@10910000 {
>                                 interrupts = <GIC_SPI 636 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c2_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -789,6 +797,7 @@ serial_2: serial@10910000 {
>                                 pinctrl-0 = <&uart2_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -803,6 +812,7 @@ spi_2: spi@10910000 {
>                                 interrupts = <GIC_SPI 636 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi2_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -817,6 +827,7 @@ usi3: usi@109200c0 {
>                                  <&cmu_peric0 CLK_GOUT_PERIC0_PERIC0_TOP0_IPCLK_2>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x1008>;
> +
>                         status = "disabled";
>
>                         hsi2c_3: i2c@10920000 {
> @@ -831,6 +842,7 @@ hsi2c_3: i2c@10920000 {
>                                 interrupts = <GIC_SPI 637 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c3_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -844,6 +856,7 @@ serial_3: serial@10920000 {
>                                 pinctrl-0 = <&uart3_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -858,6 +871,7 @@ spi_3: spi@10920000 {
>                                 interrupts = <GIC_SPI 637 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi3_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -872,6 +886,7 @@ usi4: usi@109300c0 {
>                                  <&cmu_peric0 CLK_GOUT_PERIC0_PERIC0_TOP0_IPCLK_3>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x100c>;
> +
>                         status = "disabled";
>
>                         hsi2c_4: i2c@10930000 {
> @@ -886,6 +901,7 @@ hsi2c_4: i2c@10930000 {
>                                 interrupts = <GIC_SPI 638 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c4_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -899,6 +915,7 @@ serial_4: serial@10930000 {
>                                 pinctrl-0 = <&uart4_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -913,6 +930,7 @@ spi_4: spi@10930000 {
>                                 interrupts = <GIC_SPI 638 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi4_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -927,6 +945,7 @@ usi5: usi@109400c0 {
>                                  <&cmu_peric0 CLK_GOUT_PERIC0_PERIC0_TOP0_IPCLK_4>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x1010>;
> +
>                         status = "disabled";
>
>                         hsi2c_5: i2c@10940000 {
> @@ -941,6 +960,7 @@ hsi2c_5: i2c@10940000 {
>                                 interrupts = <GIC_SPI 639 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c5_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -954,6 +974,7 @@ serial_5: serial@10940000 {
>                                 pinctrl-0 = <&uart5_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -968,6 +989,7 @@ spi_5: spi@10940000 {
>                                 interrupts = <GIC_SPI 639 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi5_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -982,6 +1004,7 @@ usi6: usi@109500c0 {
>                                  <&cmu_peric0 CLK_GOUT_PERIC0_PERIC0_TOP0_IPCLK_5>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x1014>;
> +
>                         status = "disabled";
>
>                         hsi2c_6: i2c@10950000 {
> @@ -996,6 +1019,7 @@ hsi2c_6: i2c@10950000 {
>                                 interrupts = <GIC_SPI 640 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c6_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1009,6 +1033,7 @@ serial_6: serial@10950000 {
>                                 pinctrl-0 = <&uart6_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1023,6 +1048,7 @@ spi_6: spi@10950000 {
>                                 interrupts = <GIC_SPI 640 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi6_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1037,6 +1063,7 @@ usi7: usi@109600c0 {
>                                  <&cmu_peric0 CLK_GOUT_PERIC0_PERIC0_TOP0_IPCLK_6>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x1018>;
> +
>                         status = "disabled";
>
>                         hsi2c_7: i2c@10960000 {
> @@ -1051,6 +1078,7 @@ hsi2c_7: i2c@10960000 {
>                                 interrupts = <GIC_SPI 641 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c7_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1064,6 +1092,7 @@ serial_7: serial@10960000 {
>                                 pinctrl-0 = <&uart7_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1078,6 +1107,7 @@ spi_7: spi@10960000 {
>                                 interrupts = <GIC_SPI 641 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi7_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1092,6 +1122,7 @@ usi8: usi@109700c0 {
>                                  <&cmu_peric0 CLK_GOUT_PERIC0_PERIC0_TOP0_IPCLK_7>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x101c>;
> +
>                         status = "disabled";
>
>                         hsi2c_8: i2c@10970000 {
> @@ -1106,6 +1137,7 @@ hsi2c_8: i2c@10970000 {
>                                 interrupts = <GIC_SPI 642 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c8_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1119,6 +1151,7 @@ serial_8: serial@10970000 {
>                                 pinctrl-0 = <&uart8_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1133,6 +1166,7 @@ spi_8: spi@10970000 {
>                                 interrupts = <GIC_SPI 642 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi8_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1148,6 +1182,7 @@ usi_uart: usi@10a000c0 {
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x1020>;
>                         samsung,mode = <USI_MODE_UART>;
> +
>                         status = "disabled";
>
>                         serial_0: serial@10a00000 {
> @@ -1160,6 +1195,7 @@ serial_0: serial@10a00000 {
>                                 pinctrl-0 = <&uart0_bus>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <256>;
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1174,6 +1210,7 @@ usi14: usi@10a200c0 {
>                                  <&cmu_peric0 CLK_GOUT_PERIC0_PERIC0_TOP1_IPCLK_2>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric0 0x1028>;
> +
>                         status = "disabled";
>
>                         hsi2c_14: i2c@10a20000 {
> @@ -1188,6 +1225,7 @@ hsi2c_14: i2c@10a20000 {
>                                 interrupts = <GIC_SPI 643 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c14_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1201,6 +1239,7 @@ serial_14: serial@10a20000 {
>                                 pinctrl-0 = <&uart14_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1215,6 +1254,7 @@ spi_14: spi@10a20000 {
>                                 interrupts = <GIC_SPI 643 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi14_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1254,6 +1294,7 @@ usi0: usi@10d100c0 {
>                                  <&cmu_peric1 CLK_GOUT_PERIC1_PERIC1_TOP0_IPCLK_1>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric1 0x1000>;
> +
>                         status = "disabled";
>
>                         hsi2c_0: i2c@10d10000 {
> @@ -1268,6 +1309,7 @@ hsi2c_0: i2c@10d10000 {
>                                 interrupts = <GIC_SPI 651 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c0_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1281,6 +1323,7 @@ serial_usi0: serial@10d10000 {
>                                 pinctrl-0 = <&uart0_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1295,6 +1338,7 @@ spi_0: spi@10d10000 {
>                                 interrupts = <GIC_SPI 651 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi0_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1309,6 +1353,7 @@ usi9: usi@10d200c0 {
>                                  <&cmu_peric1 CLK_GOUT_PERIC1_PERIC1_TOP0_IPCLK_2>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric1 0x1004>;
> +
>                         status = "disabled";
>
>                         hsi2c_9: i2c@10d20000 {
> @@ -1323,6 +1368,7 @@ hsi2c_9: i2c@10d20000 {
>                                 interrupts = <GIC_SPI 652 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c9_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1336,6 +1382,7 @@ serial_9: serial@10d20000 {
>                                 pinctrl-0 = <&uart9_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1350,6 +1397,7 @@ spi_9: spi@10d20000 {
>                                 interrupts = <GIC_SPI 652 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi9_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1364,6 +1412,7 @@ usi10: usi@10d300c0 {
>                                  <&cmu_peric1 CLK_GOUT_PERIC1_PERIC1_TOP0_IPCLK_3>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric1 0x1008>;
> +
>                         status = "disabled";
>
>                         hsi2c_10: i2c@10d30000 {
> @@ -1378,6 +1427,7 @@ hsi2c_10: i2c@10d30000 {
>                                 interrupts = <GIC_SPI 653 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c10_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1391,6 +1441,7 @@ serial_10: serial@10d30000 {
>                                 pinctrl-0 = <&uart10_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1405,6 +1456,7 @@ spi_10: spi@10d30000 {
>                                 interrupts = <GIC_SPI 653 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi10_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1419,6 +1471,7 @@ usi11: usi@10d400c0 {
>                                  <&cmu_peric1 CLK_GOUT_PERIC1_PERIC1_TOP0_IPCLK_4>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric1 0x100c>;
> +
>                         status = "disabled";
>
>                         hsi2c_11: i2c@10d40000 {
> @@ -1433,6 +1486,7 @@ hsi2c_11: i2c@10d40000 {
>                                 interrupts = <GIC_SPI 654 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c11_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1446,6 +1500,7 @@ serial_11: serial@10d40000 {
>                                 pinctrl-0 = <&uart11_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1460,6 +1515,7 @@ spi_11: spi@10d40000 {
>                                 interrupts = <GIC_SPI 654 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi11_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1474,6 +1530,7 @@ usi12: usi@10d500c0 {
>                                  <&cmu_peric1 CLK_GOUT_PERIC1_PERIC1_TOP0_IPCLK_5>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric1 0x1010>;
> +
>                         status = "disabled";
>
>                         hsi2c_12: i2c@10d50000 {
> @@ -1488,6 +1545,7 @@ hsi2c_12: i2c@10d50000 {
>                                 interrupts = <GIC_SPI 655 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c12_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1501,6 +1559,7 @@ serial_12: serial@10d50000 {
>                                 pinctrl-0 = <&uart12_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1515,6 +1574,7 @@ spi_12: spi@10d50000 {
>                                 interrupts = <GIC_SPI 655 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi12_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1529,6 +1589,7 @@ usi13: usi@10d600c0 {
>                                  <&cmu_peric1 CLK_GOUT_PERIC1_PERIC1_TOP0_IPCLK_6>;
>                         clock-names = "pclk", "ipclk";
>                         samsung,sysreg = <&sysreg_peric1 0x1014>;
> +
>                         status = "disabled";
>
>                         hsi2c_13: i2c@10d60000 {
> @@ -1543,6 +1604,7 @@ hsi2c_13: i2c@10d60000 {
>                                 interrupts = <GIC_SPI 656 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&hsi2c13_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>
> @@ -1556,6 +1618,7 @@ serial_13: serial@10d60000 {
>                                 pinctrl-0 = <&uart13_bus_single>;
>                                 pinctrl-names = "default";
>                                 samsung,uart-fifosize = <64>;
> +
>                                 status = "disabled";
>                         };
>
> @@ -1570,6 +1633,7 @@ spi_13: spi@10d60000 {
>                                 interrupts = <GIC_SPI 656 IRQ_TYPE_LEVEL_HIGH 0>;
>                                 pinctrl-0 = <&spi13_bus>;
>                                 pinctrl-names = "default";
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1609,6 +1673,7 @@ usbdrd31_phy: phy@11100000 {
>                         clock-names = "phy", "ref", "ctrl_aclk", "ctrl_pclk", "scl_pclk";
>                         #phy-cells = <1>;
>                         samsung,pmu-syscon = <&pmu_system_controller>;
> +
>                         status = "disabled";
>                 };
>
> @@ -1622,6 +1687,7 @@ usbdrd31: usb@11110000 {
>                         clock-names = "bus_early", "susp_clk", "link_aclk", "link_pclk";
>                         #address-cells = <1>;
>                         #size-cells = <1>;
> +
>                         status = "disabled";
>
>                         usbdrd31_dwc3: usb@0 {
> @@ -1635,6 +1701,7 @@ usbdrd31_dwc3: usb@0 {
>                                 snps,has-lpm-erratum;
>                                 snps,dis_u2_susphy_quirk;
>                                 snps,dis_u3_susphy_quirk;
> +
>                                 status = "disabled";
>                         };
>                 };
> @@ -1698,6 +1765,7 @@ ufs_0: ufs@14700000 {
>                         phys = <&ufs_0_phy>;
>                         phy-names = "ufs-phy";
>                         samsung,sysreg = <&sysreg_hsi2 0x710>;
> +
>                         status = "disabled";
>                 };
>
> @@ -1709,6 +1777,7 @@ ufs_0_phy: phy@14704000 {
>                         #phy-cells = <0>;
>                         clocks = <&ext_24_5m>;
>                         clock-names = "ref_clk";
> +
>                         status = "disabled";
>                 };
>
> @@ -1812,6 +1881,7 @@ pinctrl_gsacore: pinctrl@17a80000 {
>                         /* TODO: update once support for this CMU exists */
>                         clocks = <0>;
>                         clock-names = "pclk";
> +
>                         status = "disabled";
>                 };
>
>
> --
> 2.53.0
>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.