diff options
author | hselasky <hselasky@FreeBSD.org> | 2011-02-26 09:28:52 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2011-02-26 09:28:52 +0000 |
commit | 33c316e3247e09a2671a5e00d67d56ae893aa496 (patch) | |
tree | 99a50ef5a909df75996712880d6c9c63b6971ede /sys/dev/usb/controller | |
parent | a0eded8271ef911ffdc6ba82e756546a8b9d58db (diff) | |
download | FreeBSD-src-33c316e3247e09a2671a5e00d67d56ae893aa496.zip FreeBSD-src-33c316e3247e09a2671a5e00d67d56ae893aa496.tar.gz |
- Correct USB 3.0 wire-speed to 5.0Gbps
MFC after: 3 days
Approved by: thompsa (mentor)
Diffstat (limited to 'sys/dev/usb/controller')
-rw-r--r-- | sys/dev/usb/controller/usb_controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/usb_controller.c b/sys/dev/usb/controller/usb_controller.c index dc662fb..dade0ad 100644 --- a/sys/dev/usb/controller/usb_controller.c +++ b/sys/dev/usb/controller/usb_controller.c @@ -365,7 +365,7 @@ usb_bus_attach(struct usb_proc_msg *pm) case USB_REV_3_0: speed = USB_SPEED_SUPER; - device_printf(bus->bdev, "4.8Gbps Super Speed USB v3.0\n"); + device_printf(bus->bdev, "5.0Gbps Super Speed USB v3.0\n"); break; default: |