forked from xuos/xiuos
enable DSB
This commit is contained in:
parent
114ff07759
commit
c5db36f4b9
|
@ -1456,7 +1456,7 @@ int xhci_event_wait(struct xhci_host *xhci,
|
||||||
* @v value Value send to doorbell
|
* @v value Value send to doorbell
|
||||||
*/
|
*/
|
||||||
static inline void xhci_doorbell ( struct xhci_host *xhci, uint32_t slotid, uint32_t value ) {
|
static inline void xhci_doorbell ( struct xhci_host *xhci, uint32_t slotid, uint32_t value ) {
|
||||||
// DSB();
|
DSB();
|
||||||
BARRIER();
|
BARRIER();
|
||||||
writel ( value, xhci->db + slotid * XHCI_REG_DB_SIZE ); /* bit[7:0] db target, is ep_id */
|
writel ( value, xhci->db + slotid * XHCI_REG_DB_SIZE ); /* bit[7:0] db target, is ep_id */
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue