diff options
author | Paul Irofti <pirofti@cvs.openbsd.org> | 2009-10-13 19:33:20 +0000 |
---|---|---|
committer | Paul Irofti <pirofti@cvs.openbsd.org> | 2009-10-13 19:33:20 +0000 |
commit | 6682179a1c327ebfd5a91e7dc39282434a805c2f (patch) | |
tree | 4d4643ee1beb2ad41f471df273cdcf08291d535b /sys/dev/usb/if_zyd.c | |
parent | 8120c6ba90a94a5745094b6f232932d0695cae1c (diff) |
Get rid of devact enum, substitute it with an int and coresponding defines.
This is needed for the addition of further suspend/resume actions.
Okay deraadt@, marco@.
Diffstat (limited to 'sys/dev/usb/if_zyd.c')
-rw-r--r-- | sys/dev/usb/if_zyd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_zyd.c b/sys/dev/usb/if_zyd.c index 3b8cfbad800..a7932aeb302 100644 --- a/sys/dev/usb/if_zyd.c +++ b/sys/dev/usb/if_zyd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_zyd.c,v 1.79 2009/06/01 08:53:44 damien Exp $ */ +/* $OpenBSD: if_zyd.c,v 1.80 2009/10/13 19:33:17 pirofti Exp $ */ /*- * Copyright (c) 2006 by Damien Bergamini <damien.bergamini@free.fr> @@ -153,7 +153,7 @@ static const struct zyd_type { int zyd_match(struct device *, void *, void *); void zyd_attach(struct device *, struct device *, void *); int zyd_detach(struct device *, int); -int zyd_activate(struct device *, enum devact); +int zyd_activate(struct device *, int); struct cfdriver zyd_cd = { NULL, "zyd", DV_IFNET @@ -2575,7 +2575,7 @@ zyd_newassoc(struct ieee80211com *ic, struct ieee80211_node *ni, int isnew) } int -zyd_activate(struct device *self, enum devact act) +zyd_activate(struct device *self, int act) { switch (act) { case DVACT_ACTIVATE: |