diff options
| author | INAGAKI Hiroshi | 2024-09-14 06:37:02 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-09-22 13:29:16 +0000 |
| commit | 5c43c157aa8ba81349e9ca429dbe2278c418bdcc (patch) | |
| tree | 28556e08eaf0bcd65b99fd6c8b4683c92d37ceb6 | |
| parent | b638a5f10f1cde564af24071a2c2ac5100b9e471 (diff) | |
| download | openwrt-5c43c157aa8ba81349e9ca429dbe2278c418bdcc.tar.gz | |
mvebu: fix "compatible" of regulator for FortiGate/FortiWiFi devices
The driver for fixed voltage regulater uses "regulator-fixed" for
compatible string, not "fixed-regulator".
Fixes: 102dc5a625 ("mvebu: add support for FortiGate 50E")
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16409
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/mvebu/files-6.6/arch/arm/boot/dts/marvell/armada-385-fortinet-fg-xxe.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/mvebu/files-6.6/arch/arm/boot/dts/marvell/armada-385-fortinet-fg-xxe.dtsi b/target/linux/mvebu/files-6.6/arch/arm/boot/dts/marvell/armada-385-fortinet-fg-xxe.dtsi index ba4460fddd..6e2f10c56a 100644 --- a/target/linux/mvebu/files-6.6/arch/arm/boot/dts/marvell/armada-385-fortinet-fg-xxe.dtsi +++ b/target/linux/mvebu/files-6.6/arch/arm/boot/dts/marvell/armada-385-fortinet-fg-xxe.dtsi @@ -147,7 +147,7 @@ }; reg_usb_vbus: regulator-usb-vbus { - compatible = "fixed-regulator"; + compatible = "regulator-fixed"; regulator-name = "usb-vbus"; regulator-min-microvolt = <5000000>; regulator-max-microvolt = <5000000>; |