29 lines
734 B
Diff
Executable File
29 lines
734 B
Diff
Executable File
--- a/drivers/usb/dwc3/core.c
|
|
+++ b/drivers/usb/dwc3/core.c
|
|
@@ -274,8 +274,7 @@
|
|
|
|
reg = dwc3_readl(dwc->regs, DWC3_DCTL);
|
|
reg |= DWC3_DCTL_CSFTRST;
|
|
- reg &= ~DWC3_DCTL_RUN_STOP;
|
|
- dwc3_gadget_dctl_write_safe(dwc, reg);
|
|
+ dwc3_writel(dwc->regs, DWC3_DCTL, reg);
|
|
|
|
/*
|
|
* For DWC_usb31 controller 1.90a and later, the DCTL.CSFRST bit
|
|
@@ -1378,10 +1377,10 @@
|
|
u8 lpm_nyet_threshold;
|
|
u8 tx_de_emphasis;
|
|
u8 hird_threshold;
|
|
- u8 rx_thr_num_pkt_prd = 0;
|
|
- u8 rx_max_burst_prd = 0;
|
|
- u8 tx_thr_num_pkt_prd = 0;
|
|
- u8 tx_max_burst_prd = 0;
|
|
+ u8 rx_thr_num_pkt_prd;
|
|
+ u8 rx_max_burst_prd;
|
|
+ u8 tx_thr_num_pkt_prd;
|
|
+ u8 tx_max_burst_prd;
|
|
u8 tx_fifo_resize_max_num;
|
|
const char *usb_psy_name;
|
|
int ret;
|
|
|