diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-04-15 19:47:33 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-04-15 19:47:33 +0000 |
commit | e405a1a73f8b9b3804f6d47d4f9733d397736b16 (patch) | |
tree | 0e02a23f7ff44e42d0cac251ea2a241e6acdbded | |
parent | e37c76aaeedb956240049010b753ee35ddb94033 (diff) |
Print both the tx and the rx interrup vector numbers instead of the tx number
twice.
From Ted Patterson.
-rw-r--r-- | sys/arch/sparc64/dev/vnet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/vnet.c b/sys/arch/sparc64/dev/vnet.c index f20f5a5b676..bc1aa681d3f 100644 --- a/sys/arch/sparc64/dev/vnet.c +++ b/sys/arch/sparc64/dev/vnet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vnet.c,v 1.24 2010/02/21 14:48:42 kettenis Exp $ */ +/* $OpenBSD: vnet.c,v 1.25 2010/04/15 19:47:32 kettenis Exp $ */ /* * Copyright (c) 2009 Mark Kettenis * @@ -261,7 +261,7 @@ vnet_attach(struct device *parent, struct device *self, void *aux) printf(": can't map interrupt\n"); return; } - printf(": ivec 0x%lx, 0x%lx", sc->sc_tx_sysino, sc->sc_tx_sysino); + printf(": ivec 0x%lx, 0x%lx", sc->sc_tx_sysino, sc->sc_rx_sysino); /* * Un-configure queues before registering interrupt handlers, |