mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-20 14:33:15 +00:00
Add XFER_INIT() macro.
This commit is contained in:
parent
f6a8158eed
commit
a2b4252d5a
@ -402,10 +402,4 @@ struct xfer_interface_operations null_xfer_ops = {
|
||||
* connected when unplugged. It will never generate messages, and
|
||||
* will silently absorb all received messages.
|
||||
*/
|
||||
struct xfer_interface null_xfer = {
|
||||
.intf = {
|
||||
.dest = &null_xfer.intf,
|
||||
.refcnt = NULL,
|
||||
},
|
||||
.op = &null_xfer_ops,
|
||||
};
|
||||
struct xfer_interface null_xfer = XFER_INIT ( &null_xfer_ops );
|
||||
|
@ -183,6 +183,19 @@ static inline void xfer_init ( struct xfer_interface *xfer,
|
||||
xfer->op = op;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialise a static data transfer interface
|
||||
*
|
||||
* @v operations Data transfer interface operations
|
||||
*/
|
||||
#define XFER_INIT( operations ) { \
|
||||
.intf = { \
|
||||
.dest = &null_xfer.intf, \
|
||||
.refcnt = NULL, \
|
||||
}, \
|
||||
.op = operations, \
|
||||
}
|
||||
|
||||
/**
|
||||
* Get data transfer interface from generic object communication interface
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user