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


Ignore:
Timestamp:
06/28/21 07:36:29 (2 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
master
Children:
deb5afb
Parents:
9832652c
git-author:
Sebastian Huber <sebastian.huber@…> (06/28/21 07:36:29)
git-committer:
Sebastian Huber <sebastian.huber@…> (07/26/21 15:08:42)
Message:

bsps/irq: Add rtems_interrupt_get_attributes()

Add a default implementation which clears the attributes to zero and
just returns RTEMS_SUCCESSFUL for valid parameters.

Update #3269.

File:
1 edited

Legend:

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

    r9832652c reebecd0  
    2828}
    2929
     30rtems_status_code bsp_interrupt_get_attributes(
     31  rtems_vector_number         vector,
     32  rtems_interrupt_attributes *attributes
     33)
     34{
     35  return RTEMS_SUCCESSFUL;
     36}
     37
    3038rtems_status_code bsp_interrupt_raise(rtems_vector_number vector)
    3139{
Note: See TracChangeset for help on using the changeset viewer.