summaryrefslogtreecommitdiff
path: root/sys/dev/usb/udl.c
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2009-09-13 08:59:10 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2009-09-13 08:59:10 +0000
commita044a88f5590364e0280b4caec055622827b4e19 (patch)
tree1eb6f9ed337a7f46546705935d91ddfb9672a3b1 /sys/dev/usb/udl.c
parent26dcaed6ce4440bfc92f2c8f9383d193fe1a35bf (diff)
Move some real noisy operations to a higher debug level.
Diffstat (limited to 'sys/dev/usb/udl.c')
-rw-r--r--sys/dev/usb/udl.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/usb/udl.c b/sys/dev/usb/udl.c
index a7a67090814..d0cce9f149a 100644
--- a/sys/dev/usb/udl.c
+++ b/sys/dev/usb/udl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: udl.c,v 1.38 2009/09/13 08:11:52 mglocker Exp $ */
+/* $OpenBSD: udl.c,v 1.39 2009/09/13 08:59:09 mglocker Exp $ */
/*
* Copyright (c) 2009 Marcus Glocker <mglocker@openbsd.org>
@@ -357,7 +357,8 @@ udl_attach_hook(void *arg)
sc->udl_fb_block_copy = udl_fb_block_copy_comp;
}
#ifdef UDL_DEBUG
- udl_init_test(sc);
+ if (udl_debug >= 4)
+ udl_init_test(sc);
#endif
/*
* From this point on we do asynchronous xfers.
@@ -738,7 +739,7 @@ udl_putchar(void *cookie, int row, int col, u_int uc, long attr)
uint32_t x, y, fg, bg;
uint32_t save_offset;
- DPRINTF(2, "%s: %s\n", DN(sc), FUNC);
+ DPRINTF(4, "%s: %s\n", DN(sc), FUNC);
save_offset = udl_cmd_get_offset(sc);
@@ -1486,7 +1487,7 @@ udl_cmd_send_async_cb(usbd_xfer_handle xfer, usbd_private_handle priv,
}
usbd_get_xfer_status(xfer, NULL, NULL, &len, NULL);
- DPRINTF(2, "%s: %s: sent %d bytes\n", DN(sc), FUNC, len);
+ DPRINTF(3, "%s: %s: sent %d bytes\n", DN(sc), FUNC, len);
skip:
/* free xfer buffer */
cx->busy = 0;