summaryrefslogtreecommitdiff
path: root/sys/dev/usb/udl.c
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2009-09-19 21:48:35 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2009-09-19 21:48:35 +0000
commit3ffd3724094528428a179e7ef91672424a6b73d2 (patch)
treef9e8dbe326e9517857bdcce9baca5b7013db909b /sys/dev/usb/udl.c
parentca7f5129e86b37cac3958a6791368f8a3858261f (diff)
Rename another function; udl_cmd_set_xfer -> udl_cmd_set_xfer_type is
a bit more self explaining. No functional changes.
Diffstat (limited to 'sys/dev/usb/udl.c')
-rw-r--r--sys/dev/usb/udl.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/usb/udl.c b/sys/dev/usb/udl.c
index 368a9d49c81..649f11fda0b 100644
--- a/sys/dev/usb/udl.c
+++ b/sys/dev/usb/udl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: udl.c,v 1.45 2009/09/19 21:43:14 mglocker Exp $ */
+/* $OpenBSD: udl.c,v 1.46 2009/09/19 21:48:34 mglocker Exp $ */
/*
* Copyright (c) 2009 Marcus Glocker <mglocker@openbsd.org>
@@ -119,7 +119,7 @@ int udl_cmd_insert_buf_comp(struct udl_softc *, uint8_t *,
uint32_t);
int udl_cmd_insert_head_comp(struct udl_softc *, uint32_t);
int udl_cmd_insert_check(struct udl_softc *, int);
-void udl_cmd_set_xfer(struct udl_softc *, int);
+void udl_cmd_set_xfer_type(struct udl_softc *, int);
void udl_cmd_save_offset(struct udl_softc *);
void udl_cmd_restore_offset(struct udl_softc *);
void udl_cmd_write_reg_1(struct udl_softc *, uint8_t, uint8_t);
@@ -294,7 +294,7 @@ udl_attach(struct device *parent, struct device *self, void *aux)
/*
* Device initialization is done per synchronous xfers.
*/
- udl_cmd_set_xfer(sc, UDL_CMD_XFER_SYNC);
+ udl_cmd_set_xfer_type(sc, UDL_CMD_XFER_SYNC);
/*
* Initialize chip.
@@ -369,7 +369,7 @@ udl_attach_hook(void *arg)
/*
* From this point on we do asynchronous xfers.
*/
- udl_cmd_set_xfer(sc, UDL_CMD_XFER_ASYNC);
+ udl_cmd_set_xfer_type(sc, UDL_CMD_XFER_ASYNC);
}
int
@@ -1468,7 +1468,7 @@ udl_cmd_insert_check(struct udl_softc *sc, int len)
if (total > UDL_CMD_MAX_XFER_SIZE) {
/* command buffer is almost full, try to flush it */
- if (cb->xfer_method == UDL_CMD_XFER_ASYNC)
+ if (cb->xfer_type == UDL_CMD_XFER_ASYNC)
error = udl_cmd_send_async(sc);
else
error = udl_cmd_send(sc);
@@ -1483,11 +1483,11 @@ udl_cmd_insert_check(struct udl_softc *sc, int len)
}
void
-udl_cmd_set_xfer(struct udl_softc *sc, int xfer_method)
+udl_cmd_set_xfer_type(struct udl_softc *sc, int xfer_type)
{
struct udl_cmd_buf *cb = &sc->sc_cmd_buf;
- cb->xfer_method = xfer_method;
+ cb->xfer_type = xfer_type;
}
void