diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-08-06 14:11:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-08-06 14:11:49 +0000 |
commit | f95c05f286b01e37607284a13bacb98d0a3d9e34 (patch) | |
tree | d9ee36f215453f6600194b32785348e9f8157bd5 /sys/dev/ic/fxpvar.h | |
parent | edb83cffdd02d113be98ce9eda3d958f68c949ef (diff) |
ca_activate for suspend/resume; tested by andrew@afresh1.com
Diffstat (limited to 'sys/dev/ic/fxpvar.h')
-rw-r--r-- | sys/dev/ic/fxpvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/fxpvar.h b/sys/dev/ic/fxpvar.h index 594764d618d..66ddb3ca3f1 100644 --- a/sys/dev/ic/fxpvar.h +++ b/sys/dev/ic/fxpvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fxpvar.h,v 1.31 2009/10/15 17:54:54 deraadt Exp $ */ +/* $OpenBSD: fxpvar.h,v 1.32 2010/08/06 14:11:43 deraadt Exp $ */ /* $NetBSD: if_fxpvar.h,v 1.1 1997/06/05 02:01:58 thorpej Exp $ */ /* @@ -157,6 +157,8 @@ struct fxp_softc { extern int fxp_intr(void *); extern int fxp_attach(struct fxp_softc *, const char *); void fxp_detach(struct fxp_softc *); +void fxp_init(void *); +void fxp_stop(struct fxp_softc *, int, int); #define FXP_RXMAP_GET(sc) ((sc)->sc_rxmaps[(sc)->sc_rxfree++]) #define FXP_RXMAP_PUT(sc,map) ((sc)->sc_rxmaps[--(sc)->sc_rxfree] = (map)) |