summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/shared/console/uart.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 19:33:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 19:33:55 +0000
commitd9b0895dff562b3f5b66235aa97ab9257019bfa5 (patch)
tree6ef5a25889eab52635775d0ce165a76348c36058 /c/src/lib/libbsp/powerpc/shared/console/uart.c
parent2007-11-26 Eric Norum <norume@aps.anl.gov> (diff)
downloadrtems-d9b0895dff562b3f5b66235aa97ab9257019bfa5.tar.bz2
2007-11-26 Joel Sherrill <joel.sherrill@OARcorp.com>
* shared/console/uart.c: Fix typo and spacing.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/powerpc/shared/console/uart.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/c/src/lib/libbsp/powerpc/shared/console/uart.c b/c/src/lib/libbsp/powerpc/shared/console/uart.c
index 2e564a6af9..112b10139d 100644
--- a/c/src/lib/libbsp/powerpc/shared/console/uart.c
+++ b/c/src/lib/libbsp/powerpc/shared/console/uart.c
@@ -20,11 +20,11 @@
struct uart_data
{
- unsigned long ioBase;
- int irq;
- int hwFlow;
- int baud;
- BSP_UartBreakCbRec breakCallback;
+ unsigned long ioBase;
+ int irq;
+ int hwFlow;
+ int baud;
+ BSP_UartBreakCbRec breakCallback;
};
/*
@@ -63,7 +63,7 @@ static struct uart_data uart_data[2] = {
#define SANITY_CHECK(uart) \
assert( MAX_UARTS > (unsigned)(uart) && uart_data[(uart)].ioBase != UART_UNSUPP )
/*
- * Macros to read/wirte register of uart, if configuration is
+ * Macros to read/write register of uart, if configuration is
* different just rewrite these macros
*/