Changeset 3cd58bd in rtems


Ignore:
Timestamp:
03/15/21 16:39:27 (3 years ago)
Author:
Ryan Long <ryan.long@…>
Branches:
master
Children:
650ac700
Parents:
09d811b
git-author:
Ryan Long <ryan.long@…> (03/15/21 16:39:27)
git-committer:
Joel Sherrill <joel@…> (04/08/21 22:58:19)
Message:

disp_hcms29xx.c: Unused value (CID #1399752)

CID 1399752: Unused value in disp_hcms29xx_update_task().

Closes #4342

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bsps/shared/dev/display/disp_hcms29xx.c

    r09d811b r3cd58bd  
    2424#include <rtems.h>
    2525#include <rtems/libio.h>
     26#include <rtems/score/assert.h>
    2627#include <bsp.h>
    2728#include <rtems/libi2c.h>
     
    597598      }
    598599      if (rc == RTEMS_SUCCESSFUL) {
    599         rc = rtems_semaphore_release(softc_ptr->disp_param.trns_sema_id);
     600        rc = rtems_semaphore_release(softc_ptr->disp_param.trns_sema_id);
     601        _Assert_Unused_variable_equals(rc, RTEMS_SUCCESSFUL);
    600602      }
    601603      /*
Note: See TracChangeset for help on using the changeset viewer.