diff options
author | Linyu Yuan <[email protected]> | 2022-03-03 13:09:00 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2022-03-03 15:46:08 +0100 |
commit | ddfaee6255945a59f897033ffb55cfcdc5bcf946 (patch) | |
tree | 936c6704ac1c5b7629a4cf4c41430cc5b76cef85 | |
parent | 81720ec5320c3a02a4b2faf597127de5478cbf02 (diff) |
usb: host: xhci: fix a comment typo in xhci_mem_init()
It should be Device Context, not doorbell.
Signed-off-by: Linyu Yuan <[email protected]>
Signed-off-by: Mathias Nyman <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/host/xhci-mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-mem.c b/drivers/usb/host/xhci-mem.c index 938eb2b907ab..bbb27ee2c6a3 100644 --- a/drivers/usb/host/xhci-mem.c +++ b/drivers/usb/host/xhci-mem.c @@ -2417,7 +2417,7 @@ int xhci_mem_init(struct xhci_hcd *xhci, gfp_t flags) writel(val, &xhci->op_regs->config_reg); /* - * xHCI section 5.4.6 - doorbell array must be + * xHCI section 5.4.6 - Device Context array must be * "physically contiguous and 64-byte (cache line) aligned". */ xhci->dcbaa = dma_alloc_coherent(dev, sizeof(*xhci->dcbaa), &dma, |