summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-11-12 02:55:03 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-11-12 02:55:03 +0000
commit8f5eafd7a3ec0a144ca9c7d6f6a431f5a35c9046 (patch)
tree07e7a34f0b920e415020ee7bf51ece3b93d8be11 /sys/dev
parented2055951ab78adbad6d3fd49d80791051fe0b93 (diff)
print address, this is not a debug piece
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/if_atu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_atu.c b/sys/dev/usb/if_atu.c
index fe2516e2937..07c3025a51d 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.10 2004/11/11 22:48:24 deraadt Exp $ */
+/* $OpenBSD: if_atu.c,v 1.11 2004/11/12 02:55:02 deraadt Exp $ */
/*
* Copyright (c) 2003, 2004
* Daan Vreeken <Danovitsch@Vitsch.net>. All rights reserved.
@@ -1720,8 +1720,8 @@ USB_ATTACH(atu)
}
/* Show the world our MAC address */
- DPRINTF(("%s: address %s\n", USBDEVNAME(sc->atu_dev),
- ether_sprintf(sc->atu_mac_addr)));
+ printf("%s: address %s\n", USBDEVNAME(sc->atu_dev),
+ ether_sprintf(sc->atu_mac_addr));
bcopy(sc->atu_mac_addr,
(char *)&sc->arpcom.ac_enaddr, ETHER_ADDR_LEN);