mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
kernel: bump 6.12 to 6.12.18
This commit is contained in:
parent
00eb500306
commit
fd54fed45c
@ -1,2 +1,2 @@
|
||||
LINUX_VERSION-6.12 = .16
|
||||
LINUX_KERNEL_HASH-6.12.16 = 5f81362a694f51520bff9faecb73f1cc9bc7bece6fdd10d5c27e348df39d7dc4
|
||||
LINUX_VERSION-6.12 = .18
|
||||
LINUX_KERNEL_HASH-6.12.18 = beb902a5f69d9e57710112203db38111dad6d30556ea8ce389284c8077fe944d
|
||||
|
@ -1,14 +0,0 @@
|
||||
--- a/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
|
||||
+++ b/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
|
||||
@@ -324,7 +324,10 @@ static int rockchip_combphy_parse_dt(str
|
||||
|
||||
priv->ext_refclk = device_property_present(dev, "rockchip,ext-refclk");
|
||||
|
||||
- priv->phy_rst = devm_reset_control_get(dev, "phy");
|
||||
+ priv->phy_rst = devm_reset_control_get_exclusive(dev, "phy");
|
||||
+ /* fallback to old behaviour */
|
||||
+ if (PTR_ERR(priv->phy_rst) == -ENOENT)
|
||||
+ priv->phy_rst = devm_reset_control_array_get_exclusive(dev);
|
||||
if (IS_ERR(priv->phy_rst))
|
||||
return dev_err_probe(dev, PTR_ERR(priv->phy_rst), "failed to get phy reset\n");
|
||||
|
Loading…
Reference in New Issue
Block a user