diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-07-08 01:09:15 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-07-08 01:09:15 +0000 |
commit | c16c56a586fc32c5fe76091f518fce0a8b8593e3 (patch) | |
tree | 100d80dc1030292fc23900c9b1abb1fae1893971 | |
parent | 073bf89fea1fc8960b9af881d6d7e437e5590a07 (diff) |
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); |