diff options
Diffstat (limited to 'sys/dev/usb/uslcom.c')
-rw-r--r-- | sys/dev/usb/uslcom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uslcom.c b/sys/dev/usb/uslcom.c index f1afa4d940c..1676548ac0e 100644 --- a/sys/dev/usb/uslcom.c +++ b/sys/dev/usb/uslcom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uslcom.c,v 1.19 2008/03/22 02:50:02 jsg Exp $ */ +/* $OpenBSD: uslcom.c,v 1.20 2009/10/13 19:33:19 pirofti Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -148,7 +148,7 @@ static const struct usb_devno uslcom_devs[] = { int uslcom_match(struct device *, void *, void *); void uslcom_attach(struct device *, struct device *, void *); int uslcom_detach(struct device *, int); -int uslcom_activate(struct device *, enum devact); +int uslcom_activate(struct device *, int); struct cfdriver uslcom_cd = { NULL, "uslcom", DV_DULL @@ -266,7 +266,7 @@ uslcom_detach(struct device *self, int flags) } int -uslcom_activate(struct device *self, enum devact act) +uslcom_activate(struct device *self, int act) { struct uslcom_softc *sc = (struct uslcom_softc *)self; int rv = 0; |