summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/sli.c8
-rw-r--r--sys/dev/ic/slivar.h4
2 files changed, 10 insertions, 2 deletions
diff --git a/sys/dev/ic/sli.c b/sys/dev/ic/sli.c
index 8d621ae5a7a..81bb94ddbd2 100644
--- a/sys/dev/ic/sli.c
+++ b/sys/dev/ic/sli.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sli.c,v 1.1 2007/05/15 01:00:15 dlg Exp $ */
+/* $OpenBSD: sli.c,v 1.2 2007/05/19 04:05:40 dlg Exp $ */
/*
* Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
@@ -49,3 +49,9 @@ sli_detach(struct sli_softc *sc, int flags)
{
return (0);
}
+
+int
+sli_intr(void *arg)
+{
+ return (0);
+}
diff --git a/sys/dev/ic/slivar.h b/sys/dev/ic/slivar.h
index 723418e740e..a9327f4c007 100644
--- a/sys/dev/ic/slivar.h
+++ b/sys/dev/ic/slivar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: slivar.h,v 1.2 2007/05/16 04:33:57 dlg Exp $ */
+/* $OpenBSD: slivar.h,v 1.3 2007/05/19 04:05:40 dlg Exp $ */
/*
* Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
@@ -31,3 +31,5 @@ struct sli_softc {
int sli_attach(struct sli_softc *);
int sli_detach(struct sli_softc *, int);
+
+int sli_intr(void *);