diff options
author | imp <imp@FreeBSD.org> | 2007-06-18 02:15:58 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2007-06-18 02:15:58 +0000 |
commit | 4161ea30e81cda37b42b86eaa4d79aed1080ab3e (patch) | |
tree | 3b3bd0dd7f0892e71adc775aefa09d18001205a0 | |
parent | d9185a1d36a3fd508d371c4b31b13dbd6b01e053 (diff) | |
download | FreeBSD-src-4161ea30e81cda37b42b86eaa4d79aed1080ab3e.zip FreeBSD-src-4161ea30e81cda37b42b86eaa4d79aed1080ab3e.tar.gz |
minor style(9) polishing
# but we need a usb_match function, if we don't already have one...
-rw-r--r-- | sys/dev/usb/if_kue.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sys/dev/usb/if_kue.c b/sys/dev/usb/if_kue.c index 9985015..11fb1b7 100644 --- a/sys/dev/usb/if_kue.c +++ b/sys/dev/usb/if_kue.c @@ -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); } /* |