diff options
author | Benoît Thébaudeau <benoit.thebaudeau@advansee.com> | 2013-05-03 10:32:15 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-05-05 17:55:03 +0200 |
commit | 1b1c526751d316aa1925d7aa8f5cee69201b0298 (patch) | |
tree | b32180ae28b666f7e611823a2d1a8873c6a06ef8 /board/freescale | |
parent | d6208a3cf90cd40318a73d82bbea3716bd536799 (diff) | |
download | u-boot-1b1c526751d316aa1925d7aa8f5cee69201b0298.tar.gz u-boot-1b1c526751d316aa1925d7aa8f5cee69201b0298.tar.bz2 u-boot-1b1c526751d316aa1925d7aa8f5cee69201b0298.zip |
imx: mx25pdk: Fix GPIO assignments
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/mx25pdk/mx25pdk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/mx25pdk/mx25pdk.c b/board/freescale/mx25pdk/mx25pdk.c index 421afea954..5e6047f834 100644 --- a/board/freescale/mx25pdk/mx25pdk.c +++ b/board/freescale/mx25pdk/mx25pdk.c @@ -30,8 +30,8 @@ #include <fsl_pmic.h> #include <mc34704.h> -#define FEC_RESET_B IMX_GPIO_NR(2, 3) -#define FEC_ENABLE_B IMX_GPIO_NR(4, 8) +#define FEC_RESET_B IMX_GPIO_NR(4, 8) +#define FEC_ENABLE_B IMX_GPIO_NR(2, 3) #define CARD_DETECT IMX_GPIO_NR(2, 1) DECLARE_GLOBAL_DATA_PTR; |