diff options
author | 2007-09-20 08:46:16 +0000 | |
---|---|---|
committer | 2007-09-20 08:46:16 +0000 | |
commit | f5d26292f0bc468918fe32d682df25a85dcca2eb (patch) | |
tree | 908d177856bc5368399ecd0ffd90a646725e676b | |
parent | replace the BANK_SEL bus space macro usage with the ISA_PUT macro and remove (diff) | |
download | wireguard-openbsd-f5d26292f0bc468918fe32d682df25a85dcca2eb.tar.xz wireguard-openbsd-f5d26292f0bc468918fe32d682df25a85dcca2eb.zip |
Print a colon out front to correct the interrupt string printing.
ok jsg@ dlg@
-rw-r--r-- | sys/dev/cardbus/if_rtw_cardbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cardbus/if_rtw_cardbus.c b/sys/dev/cardbus/if_rtw_cardbus.c index 4598f24d5f2..f343e433102 100644 --- a/sys/dev/cardbus/if_rtw_cardbus.c +++ b/sys/dev/cardbus/if_rtw_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rtw_cardbus.c,v 1.12 2007/09/05 11:09:08 jsg Exp $ */ +/* $OpenBSD: if_rtw_cardbus.c,v 1.13 2007/09/20 08:46:16 brad Exp $ */ /* $NetBSD: if_rtw_cardbus.c,v 1.4 2004/12/20 21:05:34 dyoung Exp $ */ /*- @@ -268,7 +268,7 @@ rtw_cardbus_attach(struct device *parent, struct device *self, void *aux) /* Remember which interrupt line. */ csc->sc_intrline = ca->ca_intrline; - printf(" irq %d\n", csc->sc_intrline); + printf(": irq %d\n", csc->sc_intrline); /* * Finish off the attach. |