diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-08-31 00:47:37 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-08-31 21:22:58 +0100 |
commit | cbe41cb31be10edc234e96cf4291245c21272a57 (patch) | |
tree | 726646b6d2002dd10a3577ee120f8d27b5726484 /src/include/ipxe/ib_packet.h | |
parent | f747fac3e1dad31378579326d8e9dce0df85c214 (diff) | |
download | ipxe-cbe41cb31be10edc234e96cf4291245c21272a57.tar.gz |
[infiniband] Use explicit "source" and "dest" address vector parameter names
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/ib_packet.h')
-rw-r--r-- | src/include/ipxe/ib_packet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/ipxe/ib_packet.h b/src/include/ipxe/ib_packet.h index 4bd335764..2556b6e18 100644 --- a/src/include/ipxe/ib_packet.h +++ b/src/include/ipxe/ib_packet.h @@ -152,9 +152,9 @@ union ib_headers { extern int ib_push ( struct ib_device *ibdev, struct io_buffer *iobuf, struct ib_queue_pair *qp, size_t payload_len, - const struct ib_address_vector *av ); + const struct ib_address_vector *dest ); extern int ib_pull ( struct ib_device *ibdev, struct io_buffer *iobuf, struct ib_queue_pair **qp, size_t *payload_len, - struct ib_address_vector *av ); + struct ib_address_vector *source ); #endif /* _IPXE_IB_PACKET_H */ |