diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-01-24 13:10:21 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-01-24 13:10:21 +0000 |
commit | eee814bf20a30a6f552e3878641f87cd6bccd3d1 (patch) | |
tree | 95026cc1fbecb4e5f68cc97c69d69701edac2eaf /sys/dev | |
parent | f53373868745d05feff828f434749b846ae08d0a (diff) |
Do not print that the firmware was successfully loaded in the USB backend
driver. It is only useful to know if firmware loading has failed. This
means fewer clutter in dmesg(8).
Spotted by and ok stsp@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/if_bwfm_usb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/usb/if_bwfm_usb.c b/sys/dev/usb/if_bwfm_usb.c index 7cdc61086e1..e2986e6a2df 100644 --- a/sys/dev/usb/if_bwfm_usb.c +++ b/sys/dev/usb/if_bwfm_usb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bwfm_usb.c,v 1.7 2018/01/08 23:30:36 patrick Exp $ */ +/* $OpenBSD: if_bwfm_usb.c,v 1.8 2018/01/24 13:10:20 patrick Exp $ */ /* * Copyright (c) 2010-2016 Broadcom Corporation * Copyright (c) 2016,2017 Patrick Wildt <patrick@blueri.se> @@ -380,7 +380,6 @@ bwfm_usb_attachhook(struct device *self) sc->sc_chip = letoh32(brom.chip); sc->sc_chiprev = letoh32(brom.chiprev); - printf("%s: firmware loaded\n", DEVNAME(sc)); } bwfm_usb_dl_cmd(sc, DL_RESETCFG, &brom, sizeof(brom)); |