mirror of
https://github.com/armbian/build.git
synced 2025-08-15 23:56:57 +02:00
* Fix wifi drivers on kernel v6.16 These patches can get deleted after merged upstream. * initial commit * fix header * remove ssv6051 driver --------- Co-authored-by: amazingfate <liujianfeng1994@gmail.com>
27 lines
856 B
Diff
27 lines
856 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Paolo Sabatino <paolo.sabatino@gmail.com>
|
|
Date: Mon, 4 Sep 2023 14:55:50 +0200
|
|
Subject: increase timeout for usb3 type C phy init
|
|
|
|
rockchip64: increase timeout for usb3 type C phy init
|
|
---
|
|
drivers/phy/rockchip/phy-rockchip-typec.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/phy/rockchip/phy-rockchip-typec.c b/drivers/phy/rockchip/phy-rockchip-typec.c
|
|
index 111111111111..222222222222 100644
|
|
--- a/drivers/phy/rockchip/phy-rockchip-typec.c
|
|
+++ b/drivers/phy/rockchip/phy-rockchip-typec.c
|
|
@@ -904,7 +904,7 @@ static int rockchip_usb3_phy_power_on(struct phy *phy)
|
|
tcphy_cfg_usb3_to_usb2_only(tcphy, false);
|
|
goto unlock_ret;
|
|
}
|
|
- usleep_range(10, 20);
|
|
+ usleep_range(100, 200);
|
|
}
|
|
|
|
if (tcphy->mode == MODE_DISCONNECT)
|
|
--
|
|
Armbian
|
|
|