summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Goby <benoit@android.com>2011-01-25 12:14:52 -0800
committerBenoit Goby <benoit@android.com>2011-01-25 12:37:56 -0800
commit3f0fad7ec42752a333787554fab28cffd3211688 (patch)
treef6784c7a38deb21a119ba99d37019ac8c5af0d29
parent2418fe42cc2e73531c6369cf7c77f135c8b04d42 (diff)
usb: host: tegra: Request 400MHz emc clock
while USB is active to eliminate all USB buffer underruns. Change-Id: I9977224601e715e950284708958be98d37b3e6b1 Signed-off-by: Nathan Connell <w14185@motorola.com>
-rw-r--r--drivers/usb/host/ehci-tegra.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c
index bd6fb0144c26..3c72ed4c6cdc 100644
--- a/drivers/usb/host/ehci-tegra.c
+++ b/drivers/usb/host/ehci-tegra.c
@@ -548,7 +548,7 @@ static int tegra_ehci_probe(struct platform_device *pdev)
}
clk_enable(tegra->emc_clk);
- clk_set_rate(tegra->emc_clk, 240000000);
+ clk_set_rate(tegra->emc_clk, 400000000);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {