boards: adi: Fix incorrect gpio voltage select flags
Fixes several adi boards that incorrectly used pinctrl flags instead of gpio flags in their devicetrees. For max32662evkit and max32672evkit, the flags are removed entirely because these socs don't support gpio voltage selection. Signed-off-by: Maureen Helm <maureen.helm@analog.com>
This commit is contained in:
parent
9d5ebb3cbc
commit
d97d440b3f
3 changed files with 3 additions and 3 deletions
|
@ -149,5 +149,5 @@
|
||||||
status = "okay";
|
status = "okay";
|
||||||
pinctrl-0 = <&spi1a_mosi_p0_8 &spi1a_sck_p0_17>;
|
pinctrl-0 = <&spi1a_mosi_p0_8 &spi1a_sck_p0_17>;
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
cs-gpios = <&gpio0 18 (GPIO_ACTIVE_LOW | MAX32_VSEL_VDDIOH)>;
|
cs-gpios = <&gpio0 18 GPIO_ACTIVE_LOW>;
|
||||||
};
|
};
|
||||||
|
|
|
@ -154,7 +154,7 @@
|
||||||
status = "okay";
|
status = "okay";
|
||||||
pinctrl-0 = <&spi0a_mosi_p0_3 &spi0a_miso_p0_2 &spi0a_sck_p0_4>;
|
pinctrl-0 = <&spi0a_mosi_p0_3 &spi0a_miso_p0_2 &spi0a_sck_p0_4>;
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
cs-gpios = <&gpio0 5 (GPIO_ACTIVE_LOW | MAX32_VSEL_VDDIOH)>;
|
cs-gpios = <&gpio0 5 GPIO_ACTIVE_LOW>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&rtc_counter {
|
&rtc_counter {
|
||||||
|
|
|
@ -163,7 +163,7 @@
|
||||||
status = "okay";
|
status = "okay";
|
||||||
pinctrl-0 = <&spi0a_mosi_p0_5 &spi0a_miso_p0_6 &spi0a_sck_p0_7>;
|
pinctrl-0 = <&spi0a_mosi_p0_5 &spi0a_miso_p0_6 &spi0a_sck_p0_7>;
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
cs-gpios = <&gpio0 4 (GPIO_ACTIVE_LOW | MAX32_VSEL_VDDIOH)>;
|
cs-gpios = <&gpio0 4 (GPIO_ACTIVE_LOW | MAX32_GPIO_VSEL_VDDIOH)>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&w1 {
|
&w1 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue