Changeset c7b4eca7 in rtems for bsps/arm/edb7312/irq


Ignore:
Timestamp:
07/27/21 07:58:43 (2 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
master
Children:
bf338f04
Parents:
67c033d3
git-author:
Sebastian Huber <sebastian.huber@…> (07/27/21 07:58:43)
git-committer:
Sebastian Huber <sebastian.huber@…> (07/27/21 08:03:19)
Message:

bsps/irq: bsp_interrupt_facility_initialize()

Do not return a status code in bsp_interrupt_facility_initialize() since this
leads to unreachable code in bsp_interrupt_initialize(). Use RTEMS_DEBUG
assertions in bsp_interrupt_facility_initialize() if necessary.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bsps/arm/edb7312/irq/irq.c

    r67c033d3 rc7b4eca7  
    126126}
    127127
    128 rtems_status_code bsp_interrupt_facility_initialize(void)
     128void bsp_interrupt_facility_initialize(void)
    129129{
    130130  uint32_t int_stat = 0;
     
    222222
    223223  _CPU_ISR_install_vector(ARM_EXCEPTION_IRQ, _ARMV4_Exception_interrupt, NULL);
    224 
    225   return RTEMS_SUCCESSFUL;
    226 }
     224}
Note: See TracChangeset for help on using the changeset viewer.