Changeset 69be08ee in rtems for c/src/libchip
- Timestamp:
- Dec 17, 2008, 12:48:04 PM (11 years ago)
- Branches:
- 4.10, 4.11, master
- Children:
- d965b2e7
- Parents:
- f7cb3cf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libchip/serial/ns16550.c
rf7cb3cf r69be08ee 19 19 * 20 20 * This driver uses the termios pseudo driver. 21 */ 22 23 /* 24 * $Id$ 21 25 */ 22 26 … … 444 448 } 445 449 450 #if defined(BSP_FEATURE_IRQ_EXTENSION) 446 451 /* 447 452 * ns16550_process … … 517 522 * This routine initializes the port to have the specified interrupts masked. 518 523 */ 524 #endif 519 525 520 526 NS16550_STATIC void ns16550_enable_interrupts( … … 555 561 NS16550_STATIC void ns16550_initialize_interrupts( int minor) 556 562 { 563 #if defined(BSP_FEATURE_IRQ_EXTENSION) || defined(BSP_FEATURE_IRQ_LEGACY) 557 564 console_tbl *c = &Console_Port_Tbl [minor]; 565 #endif 558 566 console_data *d = &Console_Port_Data [minor]; 559 567 … … 578 586 } 579 587 } 580 #elif defined BSP_FEATURE_IRQ_LEGACY588 #elif defined(BSP_FEATURE_IRQ_LEGACY) 581 589 { 582 590 int rv = 0;
Note: See TracChangeset
for help on using the changeset viewer.