Skip to content

Commit

Permalink
mx35: Fix broken pin definitions
Browse files Browse the repository at this point in the history
Signed-off-by: Benoît Thébaudeau <[email protected]>
Cc: Stefano Babic <[email protected]>
Acked-by: Stefano Babic <[email protected]>
  • Loading branch information
bthebaudeau authored and albert-aribaud-u-boot committed Sep 1, 2012
1 parent e23ee56 commit fe24d61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions arch/arm/include/asm/arch-mx35/mx35_pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -347,9 +347,6 @@ typedef enum iomux_pins {
MX35_PIN_FEC_TDATA2 = _MXC_BUILD_GPIO_PIN(2, 21, 0x31C, 0x780),
MX35_PIN_FEC_RDATA3 = _MXC_BUILD_GPIO_PIN(2, 22, 0x320, 0x784),
MX35_PIN_FEC_TDATA3 = _MXC_BUILD_GPIO_PIN(2, 23, 0x324, 0x788),

MX35_PIN_RTS2_UART3_RXD_MUX = _MXC_BUILD_NON_GPIO_PIN(0x1a0, 0x5e4),
MX35_PIN_CTS2_UART3_TXD_MUX = _MXC_BUILD_NON_GPIO_PIN(0x1a4, 0x5e8),
} iomux_pin_name_t;

#endif
Expand Down
4 changes: 2 additions & 2 deletions board/CarMediaLab/flea3/flea3.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ static void board_setup_sdram(void)

static void setup_iomux_uart3(void)
{
mxc_request_iomux(MX35_PIN_RTS2_UART3_RXD_MUX, MUX_CONFIG_ALT7);
mxc_request_iomux(MX35_PIN_CTS2_UART3_TXD_MUX, MUX_CONFIG_ALT7);
mxc_request_iomux(MX35_PIN_RTS2, MUX_CONFIG_ALT7);
mxc_request_iomux(MX35_PIN_CTS2, MUX_CONFIG_ALT7);
}

static void setup_iomux_i2c(void)
Expand Down

0 comments on commit fe24d61

Please sign in to comment.