Changeset eff69891 in rtems


Ignore:
Timestamp:
04/08/15 07:49:11 (9 years ago)
Author:
Daniel Hellstrom <daniel@…>
Branches:
4.11, 5, master
Children:
2fb0912
Parents:
39937b6c
git-author:
Daniel Hellstrom <daniel@…> (04/08/15 07:49:11)
git-committer:
Daniel Hellstrom <daniel@…> (04/16/15 23:10:27)
Message:

DRVMGR: use RTEMS_INLINE_ROUTINE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libdrvmgr/drvmgr.h

    r39937b6c reff69891  
    1414#include <drvmgr/drvmgr_list.h>
    1515#include <stdint.h>
     16#include <rtems/score/basedefs.h>
    1617
    1718#ifdef __cplusplus
     
    479480
    480481/*! Get parent bus */
    481 static inline struct drvmgr_bus *drvmgr_get_parent(struct drvmgr_dev *dev)
     482RTEMS_INLINE_ROUTINE struct drvmgr_bus *drvmgr_get_parent(
     483        struct drvmgr_dev *dev)
    482484{
    483485        if (dev)
     
    488490
    489491/*! Get Driver of device */
    490 static inline struct drvmgr_drv *drvmgr_get_drv(struct drvmgr_dev *dev)
     492RTEMS_INLINE_ROUTINE struct drvmgr_drv *drvmgr_get_drv(struct drvmgr_dev *dev)
    491493{
    492494        if (dev)
Note: See TracChangeset for help on using the changeset viewer.