diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-08-08 05:18:54 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-08-08 05:18:54 +0000 |
commit | 8672cd5704846b9e5371df3396c32ec627388ff4 (patch) | |
tree | 9b78554ed49a7a98483b1e8f7add17c11e2977e9 /sys/dev/cardbus | |
parent | bc2f26c5c80417e6c7ed0074c78fdd719acf14c9 (diff) |
Mention which MAC we are using (ACX100 or ACX111) and fix
newline in cardbus attachment.
Diffstat (limited to 'sys/dev/cardbus')
-rw-r--r-- | sys/dev/cardbus/if_acx_cardbus.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/cardbus/if_acx_cardbus.c b/sys/dev/cardbus/if_acx_cardbus.c index e506018c642..68f39eec928 100644 --- a/sys/dev/cardbus/if_acx_cardbus.c +++ b/sys/dev/cardbus/if_acx_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_acx_cardbus.c,v 1.5 2006/08/03 22:48:36 deraadt Exp $ */ +/* $OpenBSD: if_acx_cardbus.c,v 1.6 2006/08/08 05:18:53 jsg Exp $ */ /* * Copyright (c) 2006 Claudio Jeker <claudio@openbsd.org> @@ -165,8 +165,7 @@ acx_cardbus_attach(struct device *parent, struct device *self, void *aux) /* set up the PCI configuration registers */ acx_cardbus_setup(csc); - printf(": irq %d", csc->sc_intrline); - + printf(": irq %d\n", csc->sc_intrline); if (CARDBUS_PRODUCT(ca->ca_id) == PCI_PRODUCT_TI_ACX111) acx111_set_param(sc); |