minor style(9) polishing

# but we need a usb_match function, if we don't already have one...
This commit is contained in:
Warner Losh 2007-06-18 02:15:58 +00:00
parent b490b13584
commit bb92e05941

View File

@ -387,15 +387,12 @@ kue_match(device_t self)
return(UMATCH_NONE);
t = kue_devs;
while(t->kue_vid) {
if (uaa->vendor == t->kue_vid &&
uaa->product == t->kue_did) {
return(UMATCH_VENDOR_PRODUCT);
}
while (t->kue_vid) {
if (uaa->vendor == t->kue_vid && uaa->product == t->kue_did)
return (UMATCH_VENDOR_PRODUCT);
t++;
}
return(UMATCH_NONE);
return (UMATCH_NONE);
}
/*