diff options
| author | Javier Martinez Canillas <[email protected]> | 2013-01-26 13:18:32 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2013-02-07 10:36:26 -0500 |
| commit | 3e857d041fddaf8079fcdd62ad613005d510c496 (patch) | |
| tree | c5d460709482b867b7ab6c1d46207d2c74c7ae7a | |
| parent | f170899f736dd2bdfdcd6dfa7592cb2739c685e3 (diff) | |
OMAP3: igep00x0: fix a build warning on IGEP boards
commit b689cd5 OMAP3: use a single board file for IGEP devices
introduced the following build warning:
igep00x0.h:168:24: warning: backslash-newline at end of file [enabled
by default]
This patch fixes the issue.
Signed-off-by: Javier Martinez Canillas <[email protected]>
| -rw-r--r-- | board/isee/igep00x0/igep00x0.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/isee/igep00x0/igep00x0.h b/board/isee/igep00x0/igep00x0.h index 3a8433517d3..ea1e9acab3b 100644 --- a/board/isee/igep00x0/igep00x0.h +++ b/board/isee/igep00x0/igep00x0.h @@ -167,4 +167,4 @@ static void setup_net_chip(void); #define MUX_IGEP0030() \ MUX_VAL(CP(UART1_TX), (IDIS | PTD | DIS | M0)) /* UART1_TX */\ - MUX_VAL(CP(UART1_RX), (IEN | PTD | DIS | M0)) /* UART1_RX */\ + MUX_VAL(CP(UART1_RX), (IEN | PTD | DIS | M0)) /* UART1_RX */ |
