arm/arm64: dts: qcom: Fix boolean properties with values
Boolean properties in DT are present or not present and don't take a value. A property such as 'foo = <0>;' evaluated to true. IOW, the value doesn't matter. It may have been intended that 0 values are false, but there is no change in behavior with this patch. Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/Yk3m92Sj26/v1mLG@robh.at.kernel.org' Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
parent
1bc12d3015
commit
bc2fb47db5
|
@ -76,7 +76,7 @@
|
|||
pinconf {
|
||||
pins = "gpio20", "gpio21";
|
||||
drive-strength = <2>;
|
||||
bias-disable = <0>;
|
||||
bias-disable;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -116,7 +116,7 @@
|
|||
pinconf {
|
||||
pins = "gpio24", "gpio25";
|
||||
drive-strength = <2>;
|
||||
bias-disable = <0>;
|
||||
bias-disable;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -141,7 +141,7 @@
|
|||
pinconf {
|
||||
pins = "gpio8", "gpio9";
|
||||
drive-strength = <2>;
|
||||
bias-disable = <0>;
|
||||
bias-disable;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -166,7 +166,7 @@
|
|||
pinconf {
|
||||
pins = "gpio12", "gpio13";
|
||||
drive-strength = <2>;
|
||||
bias-disable = <0>;
|
||||
bias-disable;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -229,7 +229,7 @@
|
|||
pinconf {
|
||||
pins = "gpio16", "gpio17";
|
||||
drive-strength = <2>;
|
||||
bias-disable = <0>;
|
||||
bias-disable;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -282,7 +282,7 @@
|
|||
pinconf {
|
||||
pins = "gpio84", "gpio85";
|
||||
drive-strength = <2>;
|
||||
bias-disable = <0>;
|
||||
bias-disable;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -1249,14 +1249,14 @@
|
|||
pins = "gpio47", "gpio48";
|
||||
function = "blsp_i2c3";
|
||||
drive-strength = <16>;
|
||||
bias-disable = <0>;
|
||||
bias-disable;
|
||||
};
|
||||
|
||||
blsp1_i2c3_sleep: blsp1-i2c2-sleep {
|
||||
pins = "gpio47", "gpio48";
|
||||
function = "gpio";
|
||||
drive-strength = <2>;
|
||||
bias-disable = <0>;
|
||||
bias-disable;
|
||||
};
|
||||
|
||||
blsp2_uart3_4pins_default: blsp2-uart2-4pins {
|
||||
|
|
|
@ -33,7 +33,7 @@ ap_h1_spi: &spi0 {};
|
|||
};
|
||||
|
||||
&alc5682 {
|
||||
realtek,dmic-clk-driving-high = "true";
|
||||
realtek,dmic-clk-driving-high;
|
||||
};
|
||||
|
||||
&cpu6_alert0 {
|
||||
|
|
|
@ -630,7 +630,7 @@
|
|||
pins = "gpio6", "gpio25", "gpio26";
|
||||
function = "gpio";
|
||||
drive-strength = <8>;
|
||||
bias-disable = <0>;
|
||||
bias-disable;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue