diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-07-28 14:55:31 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-07-28 14:55:31 +0200 |
commit | a465c94eb355007d211750bd39ac02b40c2c3ecf (patch) | |
tree | 325a2cc39e4b8c8d7849aff8f990bc2d260d47cc | |
parent | Merge tag 'phy-for-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/kis... (diff) | |
parent | usb: chipidea: tegra: Use aligned DMA on Tegra114/124 (diff) | |
download | linux-a465c94eb355007d211750bd39ac02b40c2c3ecf.tar.xz linux-a465c94eb355007d211750bd39ac02b40c2c3ecf.zip |
Merge tag 'usb-ci-v4.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-next
Peter writes:
One patch to enable USB Ethernet gadget at Tegra platforms
-rw-r--r-- | drivers/usb/chipidea/ci_hdrc_tegra.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/chipidea/ci_hdrc_tegra.c b/drivers/usb/chipidea/ci_hdrc_tegra.c index 7f4d2b6af37a..772851bee99b 100644 --- a/drivers/usb/chipidea/ci_hdrc_tegra.c +++ b/drivers/usb/chipidea/ci_hdrc_tegra.c @@ -33,11 +33,11 @@ static const struct tegra_udc_soc_info tegra30_udc_soc_info = { }; static const struct tegra_udc_soc_info tegra114_udc_soc_info = { - .flags = 0, + .flags = CI_HDRC_REQUIRES_ALIGNED_DMA, }; static const struct tegra_udc_soc_info tegra124_udc_soc_info = { - .flags = 0, + .flags = CI_HDRC_REQUIRES_ALIGNED_DMA, }; static const struct of_device_id tegra_udc_of_match[] = { |