diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-06-15 22:38:05 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-06-15 22:38:05 +0000 |
commit | bb3fa9168b8e38b580a0c6e83ca5a3a2f8f2bcba (patch) | |
tree | f8efdb17f869e3d5f6292146c4bc31024ec968e5 /sys/dev/usb/usb_device.c | |
parent | 3e55479329bb79a78046777e9477fb6a7c7a07a2 (diff) | |
download | FreeBSD-src-bb3fa9168b8e38b580a0c6e83ca5a3a2f8f2bcba.zip FreeBSD-src-bb3fa9168b8e38b580a0c6e83ca5a3a2f8f2bcba.tar.gz |
Fix usb2_find_descriptor function name.
Diffstat (limited to 'sys/dev/usb/usb_device.c')
-rw-r--r-- | sys/dev/usb/usb_device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usb_device.c b/sys/dev/usb/usb_device.c index fd7a5af..d919d3a 100644 --- a/sys/dev/usb/usb_device.c +++ b/sys/dev/usb/usb_device.c @@ -2017,7 +2017,7 @@ usbd_get_iface(struct usb_device *udev, uint8_t iface_index) } /*------------------------------------------------------------------------* - * usb2_find_descriptor + * usbd_find_descriptor * * This function will lookup the first descriptor that matches the * criteria given by the arguments "type" and "subtype". Descriptors @@ -2032,7 +2032,7 @@ usbd_get_iface(struct usb_device *udev, uint8_t iface_index) * Else: A descriptor matching the criteria *------------------------------------------------------------------------*/ void * -usb2_find_descriptor(struct usb_device *udev, void *id, uint8_t iface_index, +usbd_find_descriptor(struct usb_device *udev, void *id, uint8_t iface_index, uint8_t type, uint8_t type_mask, uint8_t subtype, uint8_t subtype_mask) { |