Sunil Hegde commented on a discussion on 
bsps/sparc/erc32/console/erc32_console.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/447#note_125290

 > +    );
 > +
 > +    rtems_interrupt_entry_initialize(
 > +      &erc32_UART_ERROR,
 > +      erc32_console_isr_error,
 > +      NULL,
 > +      "process UART Error"
 > +    );
 > +
 > +    rtems_interrupt_entry_install(
 > +      CONSOLE_UART_A_TRAP,
 > +      RTEMS_INTERRUPT_UNIQUE,
 > +      &erc32_UART_A
 > +    );
 > +
 > +    ERC32_Clear_and_unmask_interrupt(CONSOLE_UART_A_TRAP);

does at the end mean initialize and install all three and then clear everything 
in the end?

```
rtems_interrupt_entry_initialize();
rtems_interrupt_entry_install();
ERC32_Clear_and_unmask_interrupt();
/* repeated 2 more times */
```

The current implementation is like this.

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/447#note_125290
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
bugs@rtems.org
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to