diff options
author | Paul Irofti <pirofti@cvs.openbsd.org> | 2013-11-19 14:04:08 +0000 |
---|---|---|
committer | Paul Irofti <pirofti@cvs.openbsd.org> | 2013-11-19 14:04:08 +0000 |
commit | d83c65d8e585fa04420ab6cb0ec011eacd86aa36 (patch) | |
tree | 6c04580456caea308d0f85aa4dfeb63151c1b573 /sys/dev/usb/ugen.c | |
parent | b9acbeee1045409630eb8a88fb8cd80dfb3af0b6 (diff) |
Kill matchlvl usage throughout the usb stack.
Allows us to move forward on cleaning.
Okay mpi@
Diffstat (limited to 'sys/dev/usb/ugen.c')
-rw-r--r-- | sys/dev/usb/ugen.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/usb/ugen.c b/sys/dev/usb/ugen.c index be8a9d29773..c072ae7dbcd 100644 --- a/sys/dev/usb/ugen.c +++ b/sys/dev/usb/ugen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ugen.c,v 1.75 2013/11/06 16:58:13 pirofti Exp $ */ +/* $OpenBSD: ugen.c,v 1.76 2013/11/19 14:04:07 pirofti Exp $ */ /* $NetBSD: ugen.c,v 1.63 2002/11/26 18:49:48 christos Exp $ */ /* $FreeBSD: src/sys/dev/usb/ugen.c,v 1.26 1999/11/17 22:33:41 n_hibma Exp $ */ @@ -140,10 +140,6 @@ ugen_match(struct device *parent, void *match, void *aux) { struct usb_attach_arg *uaa = aux; -#if 0 - if (uaa->matchlvl) - return (uaa->matchlvl); -#endif if (uaa->usegeneric) { return (UMATCH_GENERIC); } else |