ipq806x: d7800: fix warning on dtc compilation

There is warning with "property has invalid length (4 bytes)"
related to nand definition. Set size-cells to zero to fix this.

Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
master
Christian Lamparter 5 years ago committed by Petr Štetiar
parent 1acc054341
commit fe26364065

@ -188,7 +188,7 @@
pinctrl-names = "default"; pinctrl-names = "default";
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <0>;
cs0 { cs0 {
reg = <0>; reg = <0>;
@ -262,7 +262,8 @@
compatible = "virtual,mdio-gpio"; compatible = "virtual,mdio-gpio";
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
gpios = <&qcom_pinmux 1 GPIO_ACTIVE_HIGH &qcom_pinmux 0 GPIO_ACTIVE_HIGH>; gpios = <&qcom_pinmux 1 GPIO_ACTIVE_HIGH>,
<&qcom_pinmux 0 GPIO_ACTIVE_HIGH>;
pinctrl-0 = <&mdio0_pins>; pinctrl-0 = <&mdio0_pins>;
pinctrl-names = "default"; pinctrl-names = "default";

Loading…
Cancel
Save