diff options
author | 2006-01-29 01:13:47 +0000 | |
---|---|---|
committer | 2006-01-29 01:13:47 +0000 | |
commit | 80a6c8e6c8641f150db75e686f72f86003c66d69 (patch) | |
tree | d80b5952224df3d07680ab9e3c91cf147704732f | |
parent | Don't ask bus_dmamem_alloc() for zero bytes. 'bioctl -H x:y amiz' no (diff) | |
download | wireguard-openbsd-80a6c8e6c8641f150db75e686f72f86003c66d69.tar.xz wireguard-openbsd-80a6c8e6c8641f150db75e686f72f86003c66d69.zip |
prettify dmesg output a touch. from Michael Knudsen.
ok brad@
-rw-r--r-- | sys/dev/usb/if_atu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_atu.c b/sys/dev/usb/if_atu.c index 275e28c1dc2..b79368dcf34 100644 --- a/sys/dev/usb/if_atu.c +++ b/sys/dev/usb/if_atu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_atu.c,v 1.65 2006/01/04 06:04:41 canacar Exp $ */ +/* $OpenBSD: if_atu.c,v 1.66 2006/01/29 01:13:47 dlg Exp $ */ /* * Copyright (c) 2003, 2004 * Daan Vreeken <Danovitsch@Vitsch.net>. All rights reserved. @@ -1250,7 +1250,7 @@ USB_ATTACH(atu) devinfop = usbd_devinfo_alloc(dev, 0); USB_ATTACH_SETUP; - printf("%s: %s\n", USBDEVNAME(sc->atu_dev), devinfop); + printf("%s: %s", USBDEVNAME(sc->atu_dev), devinfop); usbd_devinfo_free(devinfop); err = usbd_set_config_no(dev, ATU_CONFIG_NO, 1); @@ -1416,7 +1416,7 @@ atu_complete_attach(struct atu_softc *sc) #endif /* ATU_DEBUG */ /* Show the world our MAC address */ - printf(": address %s\n", ether_sprintf(ic->ic_myaddr)); + printf(", address %s\n", ether_sprintf(ic->ic_myaddr)); sc->atu_cdata.atu_tx_inuse = 0; |