mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
mediatek: YunCore AX835: fix voltage regulator
Specifying GPIO_ACTIVE_HIGH on the GPIO for the voltage regulator doesn't suffice. The regulator itself requires enable-active-high to be set. Fixes: #16292 Signed-off-by: Leon M. Busch-George <leon@georgemail.eu> Link: https://github.com/openwrt/openwrt/pull/16839 Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
92fd12e7fd
commit
6bc930c47d
@ -35,6 +35,7 @@
|
|||||||
regulator-name = "led_vbus";
|
regulator-name = "led_vbus";
|
||||||
regulator-min-microvolt = <3300000>;
|
regulator-min-microvolt = <3300000>;
|
||||||
regulator-max-microvolt = <3300000>;
|
regulator-max-microvolt = <3300000>;
|
||||||
|
enable-active-high;
|
||||||
regulator-always-on;
|
regulator-always-on;
|
||||||
gpios = <&pio 5 GPIO_ACTIVE_HIGH>;
|
gpios = <&pio 5 GPIO_ACTIVE_HIGH>;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user