diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-14 10:11:17 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-14 10:11:17 +0000 |
commit | 48939e5d0b01761f2fb9609643a9584084ac358e (patch) | |
tree | c120ec056828b2bdb3359c328b980e7c56e47562 /sys/dev/usb/if_wi_usb.c | |
parent | d885abbcc7cc8875af669798ca0d6c6f6a0d1c90 (diff) |
Remove the definition and usage of the USB_DECLARE_DRIVER_CLASS and
USB_DECLARE_DRIVER macros.
No binary change.
ok dlg.
Diffstat (limited to 'sys/dev/usb/if_wi_usb.c')
-rw-r--r-- | sys/dev/usb/if_wi_usb.c | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/sys/dev/usb/if_wi_usb.c b/sys/dev/usb/if_wi_usb.c index 79f93264fd1..da4b6ee0389 100644 --- a/sys/dev/usb/if_wi_usb.c +++ b/sys/dev/usb/if_wi_usb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi_usb.c,v 1.41 2007/06/12 16:26:36 mbalmer Exp $ */ +/* $OpenBSD: if_wi_usb.c,v 1.42 2007/06/14 10:11:15 mbalmer Exp $ */ /* * Copyright (c) 2003 Dale Rahn. All rights reserved. @@ -262,7 +262,22 @@ const struct wi_usb_type { }; #define wi_usb_lookup(v, p) ((struct wi_usb_type *)usb_lookup(wi_usb_devs, v, p)) -USB_DECLARE_DRIVER_CLASS(wi_usb, DV_IFNET); +int wi_usb_match(struct device *, void *, void *); +void wi_usb_attach(struct device *, struct device *, void *); +int wi_usb_detach(struct device *, int); +int wi_usb_activate(struct device *, enum devact); + +struct cfdriver wi_usb_cd = { + NULL, "wi_usb", DV_IFNET +}; + +const struct cfattach wi_usb_ca = { + sizeof(struct wi_usb_softc), + wi_usb_match, + wi_usb_attach, + wi_usb_detach, + wi_usb_activate, +}; int wi_usb_match(struct device *parent, void *match, void *aux) |