diff options
author | Richard Zhu <richard.zhu@freescale.com> | 2014-10-15 15:33:44 +0800 |
---|---|---|
committer | Richard Zhu <Richard.Zhu@freescale.com> | 2014-10-24 15:06:46 +0800 |
commit | 708782f14565b41a265e3a45d93e9f690e15ff23 (patch) | |
tree | e618e4a176c81119a57a80cf033d61c5fc3d4f7c | |
parent | 5a32d2af99dde256decdd88aa306a15ae36437cd (diff) | |
download | u-boot-imx-708782f14565b41a265e3a45d93e9f690e15ff23.zip u-boot-imx-708782f14565b41a265e3a45d93e9f690e15ff23.tar.gz u-boot-imx-708782f14565b41a265e3a45d93e9f690e15ff23.tar.bz2 |
MLK-9697 pcie: PERST_GPIO and POWER_GPIO are currently swapped
Fix the GPIO assignments as per the board schematics.
Signed-off-by: Richard Zhu <richard.zhu@freescale.com>
-rw-r--r-- | include/configs/mx6sxsabresd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/mx6sxsabresd.h b/include/configs/mx6sxsabresd.h index 0414c25..74a09f0 100644 --- a/include/configs/mx6sxsabresd.h +++ b/include/configs/mx6sxsabresd.h @@ -374,8 +374,8 @@ #define CONFIG_PCI_PNP #define CONFIG_PCI_SCAN_SHOW #define CONFIG_PCIE_IMX -#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(2, 1) -#define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(2, 0) +#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(2, 0) +#define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(2, 1) #endif #if defined(CONFIG_ANDROID_SUPPORT) |