Revert part of revision 1.49 which was supposed to be white space

only.  In the device probe we don't want to match unless there is
an iface structure already set up.
This commit is contained in:
Josef Karthauser 2002-04-17 12:03:20 +00:00
parent e6c0365295
commit 865fe6dbe4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=94932

View File

@ -618,7 +618,7 @@ USB_MATCH(aue)
USB_MATCH_START(aue, uaa);
struct aue_type *t;
if (uaa->iface != NULL)
if (uaa->iface == NULL)
return (UMATCH_NONE);
t = aue_devs;