DM USB: xHCI: rename some variables about ERST

This patch only changes some names of varaibles about Event Ring Segement
Table (ERST), and doesn't modify any code logic.

Tracked-On: #3628
Signed-off-by: Xiaoguang Wu <xiaoguang.wu@intel.com>
Acked-by: Yu Wang <yu1.wang@intel.com>
This commit is contained in:
Xiaoguang Wu
2019-09-16 23:32:46 +08:00
committed by wenlingz
parent e9211514e7
commit 52c17d634a
2 changed files with 18 additions and 17 deletions

View File

@@ -399,10 +399,11 @@ struct xhci_dev_endpoint_trbs {
XHCI_MAX_TRANSFERS) + XHCI_MAX_STREAMS];
};
struct xhci_event_ring_seg {
volatile uint64_t qwEvrsTablePtr;
volatile uint32_t dwEvrsTableSize;
volatile uint32_t dwEvrsReserved;
struct xhci_erst {
volatile uint64_t qwRingSegBase;
volatile uint32_t dwRingSegSize;
volatile uint32_t dwRingSegRsv;
};
#endif /* _XHCI_H_ */