diff options
| author | Leon M. Busch-George | 2024-11-02 11:28:51 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-11-04 09:36:11 +0000 |
| commit | 6bc930c47dd612a0933f29426e5765362f54e17b (patch) | |
| tree | babcf7e5d513023953fd239052c17f3efbfc54c2 | |
| parent | 92fd12e7fd90ab2dc44b70300eb05c9da4f1f698 (diff) | |
| download | openwrt-6bc930c47dd612a0933f29426e5765362f54e17b.tar.gz | |
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>
| -rw-r--r-- | target/linux/mediatek/dts/mt7981b-yuncore-ax835.dts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/mediatek/dts/mt7981b-yuncore-ax835.dts b/target/linux/mediatek/dts/mt7981b-yuncore-ax835.dts index 5f98e6178a..b5de1c34b4 100644 --- a/target/linux/mediatek/dts/mt7981b-yuncore-ax835.dts +++ b/target/linux/mediatek/dts/mt7981b-yuncore-ax835.dts @@ -35,6 +35,7 @@ regulator-name = "led_vbus"; regulator-min-microvolt = <3300000>; regulator-max-microvolt = <3300000>; + enable-active-high; regulator-always-on; gpios = <&pio 5 GPIO_ACTIVE_HIGH>; }; |