moved request to pod_rq.h

This commit is contained in:
dzavalishin 2015-06-25 19:28:29 +03:00
parent fdee78d390
commit 2065809056
2 changed files with 23 additions and 0 deletions

View File

@ -84,6 +84,18 @@ typedef struct pod_device
//-------------------------------------------------------------------
//
// Request methods
//
//-------------------------------------------------------------------
inline errno_t pod_rq_enqueue( pod_device *dev, pod_request *rq )
{
if( (dev == 0) || (dev->calls == 0) || (dev->calls->enqueue == 0 ) )
@ -155,4 +167,7 @@ inline errno_t pod_rq_raise( pod_device *dev, pod_request *rq, uint32_t io_prio
#endif // POD_DEVICE_H

View File

@ -58,4 +58,12 @@ typedef struct pod_request
#endif // POD_RQ_H