summaryrefslogtreecommitdiff
path: root/sys/dev/cardbus
diff options
context:
space:
mode:
authorDamien Bergamini <damien@cvs.openbsd.org>2010-12-31 14:52:48 +0000
committerDamien Bergamini <damien@cvs.openbsd.org>2010-12-31 14:52:48 +0000
commitf0f6a29566d2e88652c1e61ef67cd33426587c7c (patch)
treefce4a509562f3d2c52b8060e94feb2edae12d742 /sys/dev/cardbus
parent0acb93debe8ce04c45bd35f0dd1ce1d3a5eb2b6e (diff)
move the printing of the MAC address to the same line than the MAC rev.
Diffstat (limited to 'sys/dev/cardbus')
-rw-r--r--sys/dev/cardbus/if_athn_cardbus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cardbus/if_athn_cardbus.c b/sys/dev/cardbus/if_athn_cardbus.c
index 01c228ce95b..5bad420b2b2 100644
--- a/sys/dev/cardbus/if_athn_cardbus.c
+++ b/sys/dev/cardbus/if_athn_cardbus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_athn_cardbus.c,v 1.11 2010/12/31 14:06:05 damien Exp $ */
+/* $OpenBSD: if_athn_cardbus.c,v 1.12 2010/12/31 14:52:47 damien Exp $ */
/*-
* Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr>
@@ -146,7 +146,7 @@ athn_cardbus_attach(struct device *parent, struct device *self, void *aux)
/* Set up the PCI configuration registers. */
athn_cardbus_setup(csc);
- printf(": irq %d", csc->sc_intrline);
+ printf(": irq %d\n", csc->sc_intrline);
athn_attach(sc);
Cardbus_function_disable(ct);