summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-08-06 02:45:55 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-08-06 02:45:55 +0000
commit1f54e2b1f3e6d6a9b94afb7516a9e81fc156caac (patch)
treed9e593d8910d5df8b6ccf820452b1eb8a342e470 /sys/dev/ic
parent58d93f88937e55e9aa70fe99129b66265f549a74 (diff)
ca_activate function for suspend/resume
tested by mlarkin
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/xl.c4
-rw-r--r--sys/dev/ic/xlreg.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/xl.c b/sys/dev/ic/xl.c
index 64f41ee9268..c2e7b172870 100644
--- a/sys/dev/ic/xl.c
+++ b/sys/dev/ic/xl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xl.c,v 1.89 2010/05/19 15:27:35 oga Exp $ */
+/* $OpenBSD: xl.c,v 1.90 2010/08/06 02:45:53 deraadt Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -161,8 +161,6 @@ int xl_intr(void *);
void xl_start(struct ifnet *);
void xl_start_90xB(struct ifnet *);
int xl_ioctl(struct ifnet *, u_long, caddr_t);
-void xl_init(void *);
-void xl_stop(struct xl_softc *);
void xl_freetxrx(struct xl_softc *);
void xl_watchdog(struct ifnet *);
void xl_shutdown(void *);
diff --git a/sys/dev/ic/xlreg.h b/sys/dev/ic/xlreg.h
index cacfde8cb9c..77949edd418 100644
--- a/sys/dev/ic/xlreg.h
+++ b/sys/dev/ic/xlreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: xlreg.h,v 1.20 2009/12/22 21:10:25 naddy Exp $ */
+/* $OpenBSD: xlreg.h,v 1.21 2010/08/06 02:45:53 deraadt Exp $ */
/*
* Copyright (c) 1997, 1998
@@ -743,3 +743,5 @@ struct xl_stats {
extern int xl_intr(void *);
extern void xl_attach(struct xl_softc *);
extern int xl_detach(struct xl_softc *);
+void xl_init(void *);
+void xl_stop(struct xl_softc *);