Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba0ab35a authored by Marcel Ziswiler's avatar Marcel Ziswiler Committed by Peter Chen
Browse files

usb: chipidea: tegra: Use aligned DMA on Tegra114/124



USB Ethernet gadget now works on Tegra114 and Tegra124.

Similar to commit 061e20e9 ("usb: chipidea: tegra: Use aligned DMA
on Tegra30").

Signed-off-by: default avatarMarcel Ziswiler <marcel.ziswiler@toradex.com>
Signed-off-by: default avatarPeter Chen <peter.chen@nxp.com>
parent dc748b66
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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[] = {