Changeset 8c0cab0 in rtems
- Timestamp:
- Sep 23, 2008, 2:07:19 PM (12 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- 8a6c480
- Parents:
- d126b320
- Location:
- c/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
rd126b320 r8c0cab0 1 2008-09-23 Sebastian Huber <sebastian.huber@embedded-brains.de> 2 3 * libchip/serial/ns16550.c: Enable interrupt code only for PowerPC or 4 BSPs that support this feature. 5 1 6 2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com> 2 7 -
c/src/libchip/serial/ns16550.c
rd126b320 r8c0cab0 31 31 #include <libchip/sersupp.h> 32 32 33 #include <bsp.h> 34 33 35 #include "ns16550_p.h" 34 36 35 #if !defined(CPU_SIMPLE_VECTORED_INTERRUPTS) && !defined(__arm__)37 #ifdef BSP_FEATURE_IRQ_EXTENSION 36 38 #include <bsp/irq.h> 37 #define NS16550_SUPPORTED38 #endif39 40 #ifdef BSP_FEATURE_IRQ_EXTENSION41 /* Nothing to do */42 39 #elif defined BSP_FEATURE_IRQ_LEGACY 43 /* Nothing to do */40 #include <bsp/irq.h> 44 41 #elif defined __PPC__ 42 #include <bsp/irq.h> 45 43 #define BSP_FEATURE_IRQ_LEGACY 46 44 #ifdef BSP_SHARED_HANDLER_SUPPORT 47 45 #define BSP_FEATURE_IRQ_LEGACY_SHARED_HANDLER_SUPPORT 48 46 #endif 49 #else50 #undef NS16650_SUPPORTED51 47 #endif 52 53 #if defined(NS16550_SUPPORTED)54 48 55 49 /* … … 725 719 } 726 720 } 727 #endif /* defined(NS16550_SUPPORTED) */
Note: See TracChangeset
for help on using the changeset viewer.