Remove compat macros. md5 the same.

This commit is contained in:
Warner Losh 2007-06-12 21:35:18 +00:00
parent 2a9e92ebf6
commit 828dd7cd00
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=170638

View File

@ -17,6 +17,7 @@
* *
* $FreeBSD$ * $FreeBSD$
*/ */
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
#include <sys/kernel.h> #include <sys/kernel.h>
@ -105,9 +106,10 @@ static const struct uark_product {
{ 0, 0 } { 0, 0 }
}; };
USB_MATCH(uark) static int
uark_match(device_t self)
{ {
USB_MATCH_START(uark, uaa); struct usb_attach_arg *uaa = device_get_ivars(self);
int i; int i;
if (uaa->iface != NULL) if (uaa->iface != NULL)
@ -123,9 +125,11 @@ USB_MATCH(uark)
return (UMATCH_NONE); return (UMATCH_NONE);
} }
USB_ATTACH(uark) static int
uark_attach(device_t self)
{ {
USB_ATTACH_START(uark, sc, uaa); struct uark_softc *sc = device_get_softc(self);
struct usb_attach_arg *uaa = device_get_ivars(self);
usbd_device_handle dev = uaa->device; usbd_device_handle dev = uaa->device;
usbd_interface_handle iface; usbd_interface_handle iface;
usb_interface_descriptor_t *id; usb_interface_descriptor_t *id;
@ -197,9 +201,10 @@ USB_ATTACH(uark)
return ENXIO; return ENXIO;
} }
USB_DETACH(uark) static int
uark_detach(device_t self)
{ {
USB_DETACH_START(uark, sc); struct uark_softc *sc = device_get_softc(self);
int rv = 0; int rv = 0;
DPRINTF(("uark_detach: sc=%p\n", sc)); DPRINTF(("uark_detach: sc=%p\n", sc));