arm/tegra: pcie: fix return value of function
authorDmitry Artamonow <mad_soft@inbox.ru>
Tue, 13 Mar 2012 05:46:27 +0000 (09:46 +0400)
committerOlof Johansson <olof@lixom.net>
Sun, 18 Mar 2012 17:26:48 +0000 (10:26 -0700)
In previous patch (arm/tegra: add timeout to PCIe PLL lock detection loop)
tegra_pcie_enable_controller() function type has been changed from
void to int, but the last return statement wasn't converted, so
function returns undefined value. Fix it.

Also while at it, address couple of minor concerns raised by reviewers:
use usleep_range for delay, and lower the value of timeout to 300ms
to be consistent with Nvidia Vibrante kernel.

Signed-off-by: Dmitry Artamonow <mad_soft@inbox.ru>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
arch/arm/mach-tegra/pcie.c

index 0a1dec69439434bf383b2fd188db6d79a57c6434..91536996c3f0eb472d2a8ff6f2f82a9c03a2eb2c 100644 (file)
@@ -639,10 +639,10 @@ static int tegra_pcie_enable_controller(void)
        pads_writel(0xfa5cfa5c, 0xc8);
 
        /* Wait for the PLL to lock */
-       timeout = 2000;
+       timeout = 300;
        do {
                val = pads_readl(PADS_PLL_CTL);
-               mdelay(1);
+               usleep_range(1000, 1000);
                if (--timeout == 0) {
                        pr_err("Tegra PCIe error: timeout waiting for PLL\n");
                        return -EBUSY;
@@ -677,7 +677,7 @@ static int tegra_pcie_enable_controller(void)
        /* Disable all execptions */
        afi_writel(0, AFI_FPCI_ERROR_MASKS);
 
-       return;
+       return 0;
 }
 
 static void tegra_pcie_xclk_clamp(bool clamp)