laforge has submitted this change. (
https://gerrit.osmocom.org/c/osmo-e1d/+/27577 )
Change subject: usb: rename 'size' to 'len' in callback functions
......................................................................
usb: rename 'size' to 'len' in callback functions
What we are passing is not the [underlying] size of the buffer, but
the length of the valid data in them.
Change-Id: I8ce91527351a56c103bd077c9565be2a81d175ac
---
M src/usb.c
1 file changed, 11 insertions(+), 11 deletions(-)
Approvals:
Jenkins Builder: Verified
tnt: Looks good to me, but someone else must approve
pespin: Looks good to me, approved
diff --git a/src/usb.c b/src/usb.c
index 747b9c5..40518d8 100644
--- a/src/usb.c
+++ b/src/usb.c
@@ -104,7 +104,7 @@
struct libusb_transfer *xfr;
};
-typedef int (*xfer_cb_t)(struct e1_usb_flow *flow, uint8_t *buf, int size);
+typedef int (*xfer_cb_t)(struct e1_usb_flow *flow, uint8_t *buf, int len);
struct e1_usb_flow {
struct e1_line *line;
@@ -124,22 +124,22 @@
// ---------------------------------------------------------------------------
static int
-e1_usb_xfer_in(struct e1_usb_flow *flow, uint8_t *buf, int size)
+e1_usb_xfer_in(struct e1_usb_flow *flow, uint8_t *buf, int len)
{
- if (size == 0)
+ if (len == 0)
return 0;
- return e1_line_demux_in(flow->line, buf + 4, size - 4, buf[3] & 0xf);
+ return e1_line_demux_in(flow->line, buf + 4, len - 4, buf[3] & 0xf);
}
static int
-e1_usb_xfer_out(struct e1_usb_flow *flow, uint8_t *buf, int size)
+e1_usb_xfer_out(struct e1_usb_flow *flow, uint8_t *buf, int len)
{
struct e1_line *line = flow->line;
struct e1_usb_line_data *ld = (struct e1_usb_line_data *) line->drv_data;
int fm, fts;
- if (size <= 0) {
- LOGPLI(line, DXFR, LOGL_ERROR, "OUT ERROR: %d\n", size);
+ if (len <= 0) {
+ LOGPLI(line, DXFR, LOGL_ERROR, "OUT ERROR: %d\n", len);
return -1;
}
@@ -161,15 +161,15 @@
}
static int
-e1_usb_xfer_fb(struct e1_usb_flow *flow, uint8_t *buf, int size)
+e1_usb_xfer_fb(struct e1_usb_flow *flow, uint8_t *buf, int len)
{
struct e1_usb_line_data *ld = (struct e1_usb_line_data *) flow->line->drv_data;
- if (size < 0) {
+ if (len < 0) {
LOGPLI(flow->line, DE1D, LOGL_ERROR, "Feedback transfer error\n");
return 0;
- } else if (size != 3) {
- LOGPLI(flow->line, DE1D, LOGL_ERROR, "Feedback packet invalid size
(%d)\n", size);
+ } else if (len != 3) {
+ LOGPLI(flow->line, DE1D, LOGL_ERROR, "Feedback packet invalid len (%d)\n",
len);
return 0;
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-e1d/+/27577
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: I8ce91527351a56c103bd077c9565be2a81d175ac
Gerrit-Change-Number: 27577
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: tnt <tnt(a)246tNt.com>
Gerrit-MessageType: merged