mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Disable configuration of the host frame interval register until
further, hence it breaks USB support on some non-RPI platforms.
This commit is contained in:
parent
af26e3dfe7
commit
f5bf22f3b5
1 changed files with 7 additions and 0 deletions
|
|
@ -350,6 +350,12 @@ dwc_otg_init_fifo(struct dwc_otg_softc *sc, uint8_t mode)
|
|||
static void
|
||||
dwc_otg_update_host_frame_interval(struct dwc_otg_softc *sc)
|
||||
{
|
||||
|
||||
/*
|
||||
* Disabled until further. Assuming that the register is already
|
||||
* programmed correctly by the boot loader.
|
||||
*/
|
||||
#if 0
|
||||
uint32_t temp;
|
||||
|
||||
/* setup HOST frame interval register, based on existing value */
|
||||
|
|
@ -375,6 +381,7 @@ dwc_otg_update_host_frame_interval(struct dwc_otg_softc *sc)
|
|||
DPRINTF("HFIR=0x%08x\n", temp);
|
||||
|
||||
DWC_OTG_WRITE_4(sc, DOTG_HFIR, temp);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Reference in a new issue