Commit 8838d922 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Greg Kroah-Hartman

usb/ohci-tmio: remove the HCD_DMA flag

This driver doesn't support normal DMA, only direct access to its
local memory.  Remove the HCD_DMA flag to properly express that fact.

Fixes: 7b81cb6b ("usb: add a HCD_DMA flag instead of guestimating DMA capabilities")
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20190903084615.19161-3-hch@lst.deSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a1747eb4
...@@ -156,7 +156,7 @@ static const struct hc_driver ohci_tmio_hc_driver = { ...@@ -156,7 +156,7 @@ static const struct hc_driver ohci_tmio_hc_driver = {
/* generic hardware linkage */ /* generic hardware linkage */
.irq = ohci_irq, .irq = ohci_irq,
.flags = HCD_USB11 | HCD_DMA | HCD_MEMORY, .flags = HCD_USB11 | HCD_MEMORY,
/* basic lifecycle operations */ /* basic lifecycle operations */
.start = ohci_tmio_start, .start = ohci_tmio_start,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment