diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2010-12-15 16:22:17 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2010-12-15 16:22:17 +0000 |
commit | a2b1bce56d3e33ec3dd14de80b4153a206bc8e02 (patch) | |
tree | 876da82eeaeaa3b04e8bea75a525ea9a6c65f91e /sys/dev/usb | |
parent | 7b9474a704bf67fd507ddb220748fb3b95d6a2c5 (diff) |
- the firmware download succeeded message should be wrapped in DPRINTF().
ok jsg@
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/uticom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uticom.c b/sys/dev/usb/uticom.c index f88104ec72a..3e486c51359 100644 --- a/sys/dev/usb/uticom.c +++ b/sys/dev/usb/uticom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uticom.c,v 1.9 2010/12/15 14:55:04 jasper Exp $ */ +/* $OpenBSD: uticom.c,v 1.10 2010/12/15 16:22:16 jasper Exp $ */ /* * Copyright (c) 2005 Dmitry Komissaroff <dxi@mail.ru>. * @@ -304,8 +304,8 @@ uticom_attach(struct device *parent, struct device *self, void *aux) sc->sc_dying = 1; return; } else { - printf("%s: firmware download succeeded\n", - sc->sc_dev.dv_xname); + DPRINTF(("%s: firmware download succeeded\n", + sc->sc_dev.dv_xname)); } status = usbd_reload_device_desc(dev); |