]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[POWERPC] FSL: Access PCIe LTSSM register with correct size
authorKumar Gala <galak@kernel.crashing.org>
Thu, 4 Oct 2007 04:37:33 +0000 (23:37 -0500)
committerKumar Gala <galak@kernel.crashing.org>
Mon, 8 Oct 2007 13:38:37 +0000 (08:38 -0500)
The LTSSM register is actual 32-bits wide so we should be doing a
dword access.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/sysdev/fsl_pci.c

index 98290f4ef3dfbd4696f10bf54aaf245b3e51844a..af090c93be10e205a536e4782d96902feab862cb 100644 (file)
@@ -160,8 +160,8 @@ static void __init quirk_fsl_pcie_transparent(struct pci_dev *dev)
 
 int __init fsl_pcie_check_link(struct pci_controller *hose)
 {
-       u16 val;
-       early_read_config_word(hose, 0, 0, PCIE_LTSSM, &val);
+       u32 val;
+       early_read_config_dword(hose, 0, 0, PCIE_LTSSM, &val);
        if (val < PCIE_LTSSM_L0)
                return 1;
        return 0;