Changeset c44ab898 in rtems


Ignore:
Timestamp:
01/28/21 10:52:38 (3 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
master
Children:
5dc4f9c7
Parents:
198e926
git-author:
Sebastian Huber <sebastian.huber@…> (01/28/21 10:52:38)
git-committer:
Sebastian Huber <sebastian.huber@…> (02/01/21 05:22:20)
Message:

bsp/leon3: Fix incompatible function types

This fix relates to a Coverity issue (PW.INCOMPATIBLE_PARAM).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bsps/sparc/leon3/clock/ckinit.c

    r198e926 rc44ab898  
    131131  } while (0)
    132132
    133 #define Clock_driver_support_install_isr( _new ) \
    134   bsp_clock_handler_install(_new)
    135 
    136 static void bsp_clock_handler_install(rtems_isr *new)
     133#define Clock_driver_support_install_isr(isr) \
     134  bsp_clock_handler_install(isr)
     135
     136static void bsp_clock_handler_install(rtems_interrupt_handler isr)
    137137{
    138138  rtems_status_code sc;
     
    142142    "Clock",
    143143    RTEMS_INTERRUPT_UNIQUE,
    144     new,
     144    isr,
    145145    NULL
    146146  );
     
    235235#define Clock_driver_timecounter_tick() leon3_tc_do_tick()
    236236
     237#define BSP_FEATURE_IRQ_EXTENSION
     238
    237239#include "../../../shared/dev/clock/clockimpl.h"
    238240
Note: See TracChangeset for help on using the changeset viewer.