diff options
Diffstat (limited to 'sys/dev/usb/uipaq.c')
-rw-r--r-- | sys/dev/usb/uipaq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uipaq.c b/sys/dev/usb/uipaq.c index c60a34babce..04b50cd0a6c 100644 --- a/sys/dev/usb/uipaq.c +++ b/sys/dev/usb/uipaq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipaq.c,v 1.16 2008/06/26 05:42:18 ray Exp $ */ +/* $OpenBSD: uipaq.c,v 1.17 2009/10/13 19:33:19 pirofti Exp $ */ /* * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -128,7 +128,7 @@ static const struct uipaq_type uipaq_devs[] = { int uipaq_match(struct device *, void *, void *); void uipaq_attach(struct device *, struct device *, void *); int uipaq_detach(struct device *, int); -int uipaq_activate(struct device *, enum devact); +int uipaq_activate(struct device *, int); struct cfdriver uipaq_cd = { NULL, "uipaq", DV_DULL @@ -358,7 +358,7 @@ uipaq_set(void *addr, int portno, int reg, int onoff) int -uipaq_activate(struct device *self, enum devact act) +uipaq_activate(struct device *self, int act) { struct uipaq_softc *sc = (struct uipaq_softc *)self; int rv = 0; |