diff options
author | 2006-10-22 06:59:00 +0000 | |
---|---|---|
committer | 2006-10-22 06:59:00 +0000 | |
commit | 090baed6091becbea07c2ef6404729e06fece4cc (patch) | |
tree | 72c811f11a2dec3e5c0c427b78ff32781a999983 /sys | |
parent | cancel progress meter when upload write fails; ok deraadt@ (diff) | |
download | wireguard-openbsd-090baed6091becbea07c2ef6404729e06fece4cc.tar.xz wireguard-openbsd-090baed6091becbea07c2ef6404729e06fece4cc.zip |
oops, the eventnotify stuff was accidentally enabled with the scsiconf
changes. its not ready yet, so disable it again.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/mpi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/mpi.c b/sys/dev/ic/mpi.c index 47a064bec01..e65d80e5e58 100644 --- a/sys/dev/ic/mpi.c +++ b/sys/dev/ic/mpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpi.c,v 1.76 2006/10/21 07:36:15 dlg Exp $ */ +/* $OpenBSD: mpi.c,v 1.77 2006/10/22 06:59:00 dlg Exp $ */ /* * Copyright (c) 2005, 2006 David Gwynne <dlg@openbsd.org> @@ -197,10 +197,12 @@ mpi_attach(struct mpi_softc *sc) goto free_replies; } +#ifdef notyet if (mpi_eventnotify(sc) != 0) { printf("%s: unable to get portfacts\n", DEVNAME(sc)); goto free_replies; } +#endif if (mpi_portenable(sc) != 0) { printf("%s: unable to enable port\n", DEVNAME(sc)); |