From 21b3fff01c3c2c45d0a172fb6d5e8c274e7cb2d6 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 2 Dec 2024 16:50:22 -0800 Subject: [PATCH] ramips: rt3050: fix wrong compatible In the process of upstreaming the local phy driver back in 2017, it seems rt3050.dtsi was left out when updating the compatible string. Add device reset as the driver needs it. Signed-off-by: Rosen Penev Link: https://github.com/openwrt/openwrt/pull/17257 Signed-off-by: Robert Marko --- target/linux/ramips/dts/rt3050.dtsi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/target/linux/ramips/dts/rt3050.dtsi b/target/linux/ramips/dts/rt3050.dtsi index 8a2304f7b9..fd52e51936 100644 --- a/target/linux/ramips/dts/rt3050.dtsi +++ b/target/linux/ramips/dts/rt3050.dtsi @@ -296,12 +296,12 @@ }; usbphy: usbphy { - compatible = "ralink,rt3050-usbphy"; + compatible = "ralink,rt3352-usbphy"; #phy-cells = <0>; ralink,sysctl = <&sysc>; - resets = <&sysc 22>; - reset-names = "host"; + resets = <&sysc 22>, <&sysc 25>; + reset-names = "host", "device"; }; ethernet: ethernet@10100000 { -- 2.30.2