Skip to content

Commit

Permalink
Blackfin arch: fix typo error in bf548 serial header file
Browse files Browse the repository at this point in the history
Signed-off-by: Sonic Zhang <[email protected]>
Signed-off-by: Bryan Wu <[email protected]>
  • Loading branch information
sonicz authored and Bryan Wu committed Jun 19, 2008
1 parent 9bedbcb commit ec64b6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/asm-blackfin/mach-bf548/bfin_serial_5xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static void bfin_serial_hw_init(struct bfin_serial_port *uart)

#ifdef CONFIG_BFIN_UART1_CTSRTS
peripheral_request(P_UART1_RTS, DRIVER_NAME);
peripheral_request(P_UART1_CTS DRIVER_NAME);
peripheral_request(P_UART1_CTS, DRIVER_NAME);
#endif
#endif

Expand All @@ -202,7 +202,7 @@ static void bfin_serial_hw_init(struct bfin_serial_port *uart)

#ifdef CONFIG_BFIN_UART3_CTSRTS
peripheral_request(P_UART3_RTS, DRIVER_NAME);
peripheral_request(P_UART3_CTS DRIVER_NAME);
peripheral_request(P_UART3_CTS, DRIVER_NAME);
#endif
#endif
SSYNC();
Expand Down

0 comments on commit ec64b6c

Please sign in to comment.