summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-22 17:02:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-22 17:02:16 +0000
commit00a2358559a0e99646c74d813dbbb1df86f1df3a (patch)
tree481b88d640caac652dc9875f2ed37a61e81a0843 /c
parent2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-00a2358559a0e99646c74d813dbbb1df86f1df3a.tar.bz2
2008-09-22 Joel Sherrill <joel.sherrill@OARcorp.com>
* libchip/serial/ns16550.c: Add not supported on arm even though it is not simple vectored.
Diffstat (limited to 'c')
-rw-r--r--c/src/ChangeLog5
-rw-r--r--c/src/libchip/serial/ns16550.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index 655e9ac326..e0afbc8cd1 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,5 +1,10 @@
2008-09-22 Joel Sherrill <joel.sherrill@OARcorp.com>
+ * libchip/serial/ns16550.c: Add not supported on arm even though it is
+ not simple vectored.
+
+2008-09-22 Joel Sherrill <joel.sherrill@OARcorp.com>
+
* libchip/serial/ns16550.c: Not currently supported on architectures
with simple vectored interrupt model.
diff --git a/c/src/libchip/serial/ns16550.c b/c/src/libchip/serial/ns16550.c
index 8159dc6343..7892a65129 100644
--- a/c/src/libchip/serial/ns16550.c
+++ b/c/src/libchip/serial/ns16550.c
@@ -32,7 +32,7 @@
#include "ns16550_p.h"
-#if !defined(CPU_SIMPLE_VECTORED_INTERRUPTS)
+#if !defined(CPU_SIMPLE_VECTORED_INTERRUPTS) &&!define(__arm__)
#include <bsp/irq.h>
#define NS16650_SUPPORTED
#endif