Commit 0efc1356 authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Greg Kroah-Hartman

usb: musb: tusb6010: Add MUSB_G_NO_SKB_RESERVE to quirks

When using the g_ncm for networking this flag will make sure that the
buffer is aligned to 32bit so the DMA can be used to offload the data
movement.
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Tested-by: default avatarTony Lindgren <tony@atomide.com>
Signed-off-by: default avatarBin Liu <b-liu@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1fa07c37
...@@ -1181,7 +1181,8 @@ static int tusb_musb_exit(struct musb *musb) ...@@ -1181,7 +1181,8 @@ static int tusb_musb_exit(struct musb *musb)
} }
static const struct musb_platform_ops tusb_ops = { static const struct musb_platform_ops tusb_ops = {
.quirks = MUSB_DMA_TUSB_OMAP | MUSB_IN_TUSB, .quirks = MUSB_DMA_TUSB_OMAP | MUSB_IN_TUSB |
MUSB_G_NO_SKB_RESERVE,
.init = tusb_musb_init, .init = tusb_musb_init,
.exit = tusb_musb_exit, .exit = tusb_musb_exit,
......
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