diff options
author | 2005-07-08 01:09:14 +0000 | |
---|---|---|
committer | 2005-07-08 01:09:14 +0000 | |
commit | b82ad4caca3935df4a46dd28788156cde20bbc64 (patch) | |
tree | 53021f34c5ff3e9e873b4bb2616e55899e13e33c | |
parent | Eliminate unused code and associated parameters. (diff) | |
download | wireguard-openbsd-b82ad4caca3935df4a46dd28788156cde20bbc64.tar.xz wireguard-openbsd-b82ad4caca3935df4a46dd28788156cde20bbc64.zip |
add a return here.
-rw-r--r-- | sys/dev/pci/if_ti.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_ti.c b/sys/dev/pci/if_ti.c index 8a18b7b2211..fd39a0ebdac 100644 --- a/sys/dev/pci/if_ti.c +++ b/sys/dev/pci/if_ti.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ti.c,v 1.65 2005/07/07 17:49:43 brad Exp $ */ +/* $OpenBSD: if_ti.c,v 1.66 2005/07/08 01:09:14 brad Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -1764,6 +1764,7 @@ ti_attach(parent, self, aux) ether_ifattach(ifp); shutdownhook_establish(ti_shutdown, sc); + return; fail: pci_intr_disestablish(pc, sc->ti_intrhand); |