diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-05-21 01:05:21 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-05-21 01:05:21 +0000 |
commit | 77979532cf260986b996444ebf7a9a8ed7e79b5a (patch) | |
tree | bb41fbf5d2f0d422d3bf3331039e32c386924129 /sys/dev/usb/usb_controller.h | |
parent | 6493599dffcf59452030c317e21e1777f4087498 (diff) | |
download | FreeBSD-src-77979532cf260986b996444ebf7a9a8ed7e79b5a.zip FreeBSD-src-77979532cf260986b996444ebf7a9a8ed7e79b5a.tar.gz |
Use enums for speed and rev data types.
Diffstat (limited to 'sys/dev/usb/usb_controller.h')
-rw-r--r-- | sys/dev/usb/usb_controller.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/usb_controller.h b/sys/dev/usb/usb_controller.h index 70b6551..48c20cb 100644 --- a/sys/dev/usb/usb_controller.h +++ b/sys/dev/usb/usb_controller.h @@ -171,7 +171,7 @@ struct usb2_hw_ep_scratch { struct usb2_temp_setup { void *buf; usb2_size_t size; - uint8_t usb2_speed; + enum usb_dev_speed usb_speed; uint8_t self_powered; uint8_t bNumEndpoints; uint8_t bInterfaceNumber; |