summaryrefslogtreecommitdiff
path: root/nuttx/arch/rgmp/src/x86
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/rgmp/src/x86')
-rw-r--r--nuttx/arch/rgmp/src/x86/Make.defs2
-rw-r--r--nuttx/arch/rgmp/src/x86/com.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/arch/rgmp/src/x86/Make.defs b/nuttx/arch/rgmp/src/x86/Make.defs
index 5fb40006e..fcf3180d8 100644
--- a/nuttx/arch/rgmp/src/x86/Make.defs
+++ b/nuttx/arch/rgmp/src/x86/Make.defs
@@ -5,7 +5,7 @@
# Author: Yu Qiang <yuq825@gmail.com>
#
# This file is a part of NuttX:
-#
+#
# Copyright (C) 2011 Gregory Nutt. All rights reserved.
#
#
diff --git a/nuttx/arch/rgmp/src/x86/com.c b/nuttx/arch/rgmp/src/x86/com.c
index 7983bb1bc..5a946db52 100644
--- a/nuttx/arch/rgmp/src/x86/com.c
+++ b/nuttx/arch/rgmp/src/x86/com.c
@@ -310,7 +310,7 @@ static int up_attach(struct uart_dev_s *dev)
int err;
err = rgmp_request_irq(priv->irq, &priv->action, 0);
-
+
return err;
}
@@ -374,7 +374,7 @@ static int up_ioctl(struct file *filep, int cmd, unsigned long arg)
struct inode *inode = filep->f_inode;
struct uart_dev_s *dev = inode->i_private;
struct up_dev_s *priv = (struct up_dev_s*)dev->priv;
-
+
switch (cmd) {
case COM_SET_BAUD:
priv->baud = arg;
@@ -546,7 +546,7 @@ static bool up_txempty(struct uart_dev_s *dev)
* Name: up_serialinit
*
* Description:
- * Performs the low level UART initialization early in
+ * Performs the low level UART initialization early in
* debug so that the serial console will be available
* during bootup. This must be called before up_serialinit.
*
@@ -554,7 +554,7 @@ static bool up_txempty(struct uart_dev_s *dev)
void up_earlyserialinit(void)
{
-
+
}
/****************************************************************************