diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-05-30 00:22:57 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-05-30 00:22:57 +0000 |
commit | b064d23a532b2149c827f886719da091c9d46db5 (patch) | |
tree | 850ed632800ebd9b53080b0dbbbb6afda22bcd1c /sys/dev/usb/usb_lookup.h | |
parent | 36bf6c9b02de093f113d81dc2ba7c54d7ba93926 (diff) | |
download | FreeBSD-src-b064d23a532b2149c827f886719da091c9d46db5.zip FreeBSD-src-b064d23a532b2149c827f886719da091c9d46db5.tar.gz |
Revert the size_t part of the last commit for the moment, this blows up the
USB_ADD_BYTES macro.
Diffstat (limited to 'sys/dev/usb/usb_lookup.h')
-rw-r--r-- | sys/dev/usb/usb_lookup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usb_lookup.h b/sys/dev/usb/usb_lookup.h index 4153019..b30c50b 100644 --- a/sys/dev/usb/usb_lookup.h +++ b/sys/dev/usb/usb_lookup.h @@ -114,9 +114,9 @@ struct usb_device_id { (((const uint8_t *)((did)->driver_info)) - ((const uint8_t *)0)) const struct usb_device_id *usb2_lookup_id_by_info( - const struct usb_device_id *id, size_t sizeof_id, + const struct usb_device_id *id, usb_size_t sizeof_id, const struct usb_lookup_info *info); int usb2_lookup_id_by_uaa(const struct usb_device_id *id, - size_t sizeof_id, struct usb_attach_arg *uaa); + usb_size_t sizeof_id, struct usb_attach_arg *uaa); #endif /* _USB2_LOOKUP_H_ */ |