diff options
author | Dmitry Osipenko <digetx@gmail.com> | 2017-12-19 05:58:07 +0300 |
---|---|---|
committer | Peter Chen <peter.chen@nxp.com> | 2017-12-21 09:32:05 +0800 |
commit | 061e20e9899e2fef170135a5d68f62d2a9514b3b (patch) | |
tree | 99ff8c7caadf803904d289acd6a89b2362641570 /drivers | |
parent | 16e791e7659645e6d8ea6286d210a24ee473d6c2 (diff) | |
download | linux-061e20e9899e2fef170135a5d68f62d2a9514b3b.tar.gz linux-061e20e9899e2fef170135a5d68f62d2a9514b3b.tar.bz2 linux-061e20e9899e2fef170135a5d68f62d2a9514b3b.zip |
usb: chipidea: tegra: Use aligned DMA on Tegra30
USB Ethernet gadget now works on Tegra30.
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Signed-off-by: Peter Chen <peter.chen@nxp.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/chipidea/ci_hdrc_tegra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/chipidea/ci_hdrc_tegra.c b/drivers/usb/chipidea/ci_hdrc_tegra.c index 7b65a1040d2c..7f4d2b6af37a 100644 --- a/drivers/usb/chipidea/ci_hdrc_tegra.c +++ b/drivers/usb/chipidea/ci_hdrc_tegra.c @@ -29,7 +29,7 @@ static const struct tegra_udc_soc_info tegra20_udc_soc_info = { }; static const struct tegra_udc_soc_info tegra30_udc_soc_info = { - .flags = 0, + .flags = CI_HDRC_REQUIRES_ALIGNED_DMA, }; static const struct tegra_udc_soc_info tegra114_udc_soc_info = { |