Changeset c7b4eca7 in rtems for bsps/arm/rtl22xx/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/rtl22xx/irq/irq.c

    r67c033d3 rc7b4eca7  
    8383}
    8484
    85 rtems_status_code bsp_interrupt_facility_initialize(void)
     85void bsp_interrupt_facility_initialize(void)
    8686{
    8787  volatile uint32_t *ctrl = (volatile uint32_t *) VICVectCntlBase;
     
    110110  /* Install the IRQ exception handler */
    111111  _CPU_ISR_install_vector(ARM_EXCEPTION_IRQ, _ARMV4_Exception_interrupt, NULL);
    112 
    113   return RTEMS_SUCCESSFUL;
    114112}
Note: See TracChangeset for help on using the changeset viewer.