summaryrefslogtreecommitdiff
path: root/nuttx/arch/c5471/src/up_serial.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-02-20 23:16:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-02-20 23:16:24 +0000
commit5e160e6e0cdfae48ea120909e7febc62b6b56eb2 (patch)
treea8ac308120edfb2eacd53d89b343c878f9dc1a3d /nuttx/arch/c5471/src/up_serial.c
parent630b4bdd3d2ca967f0e1d4f438f7f1761461dd31 (diff)
downloadpx4-nuttx-5e160e6e0cdfae48ea120909e7febc62b6b56eb2.tar.gz
px4-nuttx-5e160e6e0cdfae48ea120909e7febc62b6b56eb2.tar.bz2
px4-nuttx-5e160e6e0cdfae48ea120909e7febc62b6b56eb2.zip
Working toward compiler independence: Removed inline funcs
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@15 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/c5471/src/up_serial.c')
-rw-r--r--nuttx/arch/c5471/src/up_serial.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/nuttx/arch/c5471/src/up_serial.c b/nuttx/arch/c5471/src/up_serial.c
index 25746da3f..df4927660 100644
--- a/nuttx/arch/c5471/src/up_serial.c
+++ b/nuttx/arch/c5471/src/up_serial.c
@@ -123,7 +123,6 @@ static int up_close(struct file *filep);
static ssize_t up_read(struct file *filep, char *buffer, size_t buflen);
static ssize_t up_write(struct file *filep, const char *buffer, size_t buflen);
static int up_ioctl(struct file *filep, int cmd, unsigned long arg);
-static void up_consoleinit(up_dev_t *dev);
static void up_uartsetup(up_dev_t *dev);
static void up_delay(int milliseconds);
@@ -590,7 +589,7 @@ static void up_xmitchars(up_dev_t *dev)
* serial driver.
*/
-static int up_interrupt(int irq, struct xcptcontext *xcp)
+static int up_interrupt(int irq, void *context)
{
up_dev_t *dev;
volatile uint32 cause;