mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-15 03:14:50 +00:00
10267e1729
Enable testing kernel. Fix compile errors by using new kernel APIs. Fix fuzz by manually editing patches to ensure the code goes in the right place. For 721-NET-no-auto-carrier-off-support.patch, revert upstream commit a307593a6 to keep the OpenWrt ralink driver operational. Add mt7621-pci-phy patch to select REGMAP_MMIO as discussed in PR #3693 and #3952. Run automatic quilt refresh on the rest. Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
16 lines
459 B
Diff
16 lines
459 B
Diff
--- a/drivers/usb/dwc2/platform.c
|
|
+++ b/drivers/usb/dwc2/platform.c
|
|
@@ -477,6 +477,12 @@ static int dwc2_driver_probe(struct plat
|
|
if (retval)
|
|
return retval;
|
|
|
|
+ /* Enable USB port before any regs access */
|
|
+ if (readl(hsotg->regs + PCGCTL) & 0x0f) {
|
|
+ writel(0x00, hsotg->regs + PCGCTL);
|
|
+ /* TODO: mdelay(25) here? vendor driver don't use it */
|
|
+ }
|
|
+
|
|
hsotg->needs_byte_swap = dwc2_check_core_endianness(hsotg);
|
|
|
|
retval = dwc2_get_dr_mode(hsotg);
|